Hi- I'm still fairly new to PInvoke calls, so I'm hoping that someone out there can help me clear this up:
I'm trying to PInvoke a call to CeGetVolumeInfo()- which is kept in CoreDll.dll- from a C# project. Here is the definition for this function from MSDN:
WINBASEAPI BOOL CeGetVolumeInfo(
LPCWSTR pszRootPath,
CE_VOLUME_INFO_LEVEL InfoLevel,
LPCE_VOLUME_INFO lpVolumeInfo );
My problem is with the CE_VOLUME_INFO_LEVEL
parameter. I'm assuming it's an enum of some kind, but I can't figure out what its actual value is (MSDN provides NO value info for it), and googling it comes up with almost nothing.
Any suggestions on how to get/use the unknown value of an enum defined in a PInvoke reachable dll?
Thanks!