FbwfGetExclusionList error

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

FbwfGetExclusionList always give the ERROR_MORE_DATA as return value . So i
cant get the excluded folder and file list

ULONG ulCurrentSession = 1;

WCHAR szDrive[32];

swprintf(szDrive, L"C:\\");

ULONG cbSize = 32;

BYTE *pszExcludedFiles = new BYTE[32];

ULONG ulProcessStatus = FbwfGetExclusionList(szDrive, ulCurrentSession,
pszExcludedFiles,&cbSize);

i always get the ERROR_MORE_DATA. can anybody help me



Thank you ,

Regards,

KSMH
 
The version of the ewfapi.dll ? I believe that previous version of ewfapi.dll has such problem. Try the newest version?
FbwfGetExclusionList always give the ERROR_MORE_DATA as return
value . So i cant get the excluded folder and file list

ULONG ulCurrentSession = 1;

WCHAR szDrive[32];

swprintf(szDrive, L"C:\\");

ULONG cbSize = 32;

BYTE *pszExcludedFiles = new BYTE[32];

ULONG ulProcessStatus = FbwfGetExclusionList(szDrive,
ulCurrentSession, pszExcludedFiles,&cbSize);

i always get the ERROR_MORE_DATA. can anybody help me



Thank you ,

Regards,

KSMH
 
Thanks for your reply,

But i am implementing File Based Write Filter API.

Thank you,
Regards,

KSMH


Rabbit Weng said:
The version of the ewfapi.dll ? I believe that previous version of ewfapi.dll has such problem. Try the newest version?
FbwfGetExclusionList always give the ERROR_MORE_DATA as return
value . So i cant get the excluded folder and file list

ULONG ulCurrentSession = 1;

WCHAR szDrive[32];

swprintf(szDrive, L"C:\\");

ULONG cbSize = 32;

BYTE *pszExcludedFiles = new BYTE[32];

ULONG ulProcessStatus = FbwfGetExclusionList(szDrive,
ulCurrentSession, pszExcludedFiles,&cbSize);

i always get the ERROR_MORE_DATA. can anybody help me



Thank you ,

Regards,

KSMH
 
Back
Top