Hi Paul,

+BOOL WINAPI FileEncryptionStatusW(LPCWSTR lpFileName, LPDWORD lpStatus)
+{
+    FIXME("%s %p\n", debugstr_w(lpFileName), lpStatus);
+    return TRUE;

If you need to return TRUE here it would be better to set lpStatus to
a meaningful value, for example FILE_SYSTEM_NOT_SUPPORT, otherwise the
caller could end up using random data.

 -Hans


Reply via email to