KERNEL32: declare Encrypt/DecryptFile

Mike McCormack mike at codeweavers.com
Mon Jun 6 20:15:21 CDT 2005


ChangeLog:
* declare Encrypt/DecryptFile
-------------- next part --------------
Index: include/winbase.h
===================================================================
RCS file: /home/wine/wine/include/winbase.h,v
retrieving revision 1.235
diff -u -p -r1.235 winbase.h
--- include/winbase.h	31 May 2005 13:24:44 -0000	1.235
+++ include/winbase.h	7 Jun 2005 01:17:24 -0000
@@ -1770,12 +1770,18 @@ BOOL        WINAPI CreateDirectoryW(LPCW
 BOOL        WINAPI CreateDirectoryExA(LPCSTR,LPCSTR,LPSECURITY_ATTRIBUTES);
 BOOL        WINAPI CreateDirectoryExW(LPCWSTR,LPCWSTR,LPSECURITY_ATTRIBUTES);
 #define     CreateDirectoryEx WINELIB_NAME_AW(CreateDirectoryEx)
+BOOL        WINAPI DecryptFileA(LPCSTR,DWORD);
+BOOL        WINAPI DecryptFileW(LPCWSTR,DWORD);
+#define     DecryptFile WINELIB_NAME_AW(DecryptFile)
 BOOL        WINAPI DefineDosDeviceA(DWORD,LPCSTR,LPCSTR);
 #define     DefineHandleTable(w) ((w),TRUE)
 ATOM        WINAPI DeleteAtom(ATOM);
 BOOL        WINAPI DeleteFileA(LPCSTR);
 BOOL        WINAPI DeleteFileW(LPCWSTR);
 #define     DeleteFile WINELIB_NAME_AW(DeleteFile)
+BOOL        WINAPI EncryptFileA(LPCSTR);
+BOOL        WINAPI EncryptFileW(LPCWSTR);
+#define     EncryptFile WINELIB_NAME_AW(EncryptFile)
 void        WINAPI FatalAppExitA(UINT,LPCSTR);
 void        WINAPI FatalAppExitW(UINT,LPCWSTR);
 void        WINAPI FatalExit(int);


More information about the wine-patches mailing list