activeds: Add stub for ADsGetLastError.
authorLouis Lenders <xerox_xerox2000@yahoo.co.uk>
Fri, 5 Mar 2010 11:00:37 +0000 (12:00 +0100)
committerAlexandre Julliard <julliard@winehq.org>
Fri, 5 Mar 2010 12:18:50 +0000 (13:18 +0100)
dlls/activeds/activeds.spec
dlls/activeds/activeds_main.c

index 63625d5d0224e307cc4d4440b6dfb328a2fd1aea..2b45834249349e3237f34c6ab0d451f7c2d10139 100644 (file)
@@ -6,7 +6,7 @@
 8 stub ADsBuildVarArrayInt
 9 stdcall ADsOpenObject(wstr wstr wstr long ptr ptr)
 12 stub ADsSetLastError
-13 stub ADsGetLastError
+13 stdcall ADsGetLastError(ptr ptr long ptr long)
 14 stub AllocADsMem
 15 stdcall FreeADsMem(ptr)
 16 stub ReallocADsMem
index 9c03ac16d68b2a12b2e4e5d1bbad8bcabc90fae0..2fa4ec73d80f595373c3d0a006afca865ee24a12 100644 (file)
@@ -94,6 +94,15 @@ HRESULT WINAPI ADsOpenObject(LPCWSTR lpszPathName, LPCWSTR lpszUserName, LPCWSTR
     return E_NOTIMPL;
 }
 
+/*****************************************************
+ * ADsGetLastError    [ACTIVEDS.13]
+ */
+HRESULT WINAPI ADsGetLastError(LPDWORD perror, LPWSTR errorbuf, DWORD errorbuflen, LPWSTR namebuf, DWORD namebuflen)
+{
+    FIXME("(%p,%p,%d,%p,%d)!stub\n", perror, errorbuf, errorbuflen, namebuf, namebuflen);
+    return E_NOTIMPL;
+}
+
 /*****************************************************
  * FreeADsMem             [ACTIVEDS.15]
  */