Christian Costa : advapi32: Specify the function is a stub in some FIXME.
Module: wine Branch: master Commit: 0d8776fa59333a636bf8e90c31ccd47d00e44ebc URL: http://source.winehq.org/git/wine.git/?a=commit;h=0d8776fa59333a636bf8e90c31... Author: Christian Costa <titan.costa(a)gmail.com> Date: Wed Apr 17 23:40:46 2013 +0200 advapi32: Specify the function is a stub in some FIXME. --- dlls/advapi32/security.c | 8 ++++---- 1 files changed, 4 insertions(+), 4 deletions(-) diff --git a/dlls/advapi32/security.c b/dlls/advapi32/security.c index 0d5aba7..359b1e2 100644 --- a/dlls/advapi32/security.c +++ b/dlls/advapi32/security.c @@ -5671,7 +5671,7 @@ DWORD WINAPI GetNamedSecurityInfoExA( LPCSTR object, SE_OBJECT_TYPE type, */ BOOL WINAPI DecryptFileW(LPCWSTR lpFileName, DWORD dwReserved) { - FIXME("%s %08x\n", debugstr_w(lpFileName), dwReserved); + FIXME("(%s, %08x): stub\n", debugstr_w(lpFileName), dwReserved); return TRUE; } @@ -5680,7 +5680,7 @@ BOOL WINAPI DecryptFileW(LPCWSTR lpFileName, DWORD dwReserved) */ BOOL WINAPI DecryptFileA(LPCSTR lpFileName, DWORD dwReserved) { - FIXME("%s %08x\n", debugstr_a(lpFileName), dwReserved); + FIXME("(%s, %08x): stub\n", debugstr_a(lpFileName), dwReserved); return TRUE; } @@ -5689,7 +5689,7 @@ BOOL WINAPI DecryptFileA(LPCSTR lpFileName, DWORD dwReserved) */ BOOL WINAPI EncryptFileW(LPCWSTR lpFileName) { - FIXME("%s\n", debugstr_w(lpFileName)); + FIXME("(%s): stub\n", debugstr_w(lpFileName)); return TRUE; } @@ -5698,7 +5698,7 @@ BOOL WINAPI EncryptFileW(LPCWSTR lpFileName) */ BOOL WINAPI EncryptFileA(LPCSTR lpFileName) { - FIXME("%s\n", debugstr_a(lpFileName)); + FIXME("(%s): stub\n", debugstr_a(lpFileName)); return TRUE; }
participants (1)
-
Alexandre Julliard