Module: wine Branch: refs/heads/master Commit: 2a6dda1cb40643cdd3bb141157a98dda7a06bd44 URL: http://source.winehq.org/git/?p=wine.git;a=commit;h=2a6dda1cb40643cdd3bb1411...
Author: Juan Lang juan_lang@yahoo.com Date: Fri Jun 23 00:15:24 2006 -0700
advapi: Add a stub for SystemFunction035.
---
dlls/advapi32/advapi32.spec | 2 +- dlls/advapi32/crypt.c | 15 +++++++++++++++ 2 files changed, 16 insertions(+), 1 deletions(-)
diff --git a/dlls/advapi32/advapi32.spec b/dlls/advapi32/advapi32.spec index 7e6880e..438b671 100644 --- a/dlls/advapi32/advapi32.spec +++ b/dlls/advapi32/advapi32.spec @@ -629,7 +629,7 @@ # @ stub StopTraceW @ stdcall SystemFunction032(ptr ptr) @ stub SystemFunction033 @ stub SystemFunction034 -@ stub SystemFunction035 +@ stdcall SystemFunction035(str) @ stdcall SystemFunction036(ptr long) # RtlGenRandom @ stdcall SystemFunction040(ptr long long) # RtlEncryptMemory @ stdcall SystemFunction041(ptr long long) # RtlDecryptMemory diff --git a/dlls/advapi32/crypt.c b/dlls/advapi32/crypt.c index 893bdc9..01be73b 100644 --- a/dlls/advapi32/crypt.c +++ b/dlls/advapi32/crypt.c @@ -1984,6 +1984,21 @@ BOOL WINAPI SystemFunction030(PVOID b1, }
/****************************************************************************** + * SystemFunction035 (ADVAPI32.@) + * + * Described here: +http://disc.server.com/discussion.cgi?disc=148775;article=942;title=Coding%2... + * + * NOTES + * Stub, always return TRUE. + */ +BOOL WINAPI SystemFunction035(LPCSTR lpszDllFilePath) +{ + FIXME("%s: stub\n", debugstr_a(lpszDllFilePath)); + return TRUE; +} + +/****************************************************************************** * SystemFunction036 (ADVAPI32.@) * * MSDN documents this function as RtlGenRandom and declares it in ntsecapi.h