Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-cw
Commits
3bad522f
Commit
3bad522f
authored
Mar 05, 2010
by
Louis Lenders
Committed by
Alexandre Julliard
Mar 05, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
activeds: Add stub for ADsGetLastError.
parent
bcc4040d
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
1 deletion
+10
-1
activeds.spec
dlls/activeds/activeds.spec
+1
-1
activeds_main.c
dlls/activeds/activeds_main.c
+9
-0
No files found.
dlls/activeds/activeds.spec
View file @
3bad522f
...
...
@@ -6,7 +6,7 @@
8 stub ADsBuildVarArrayInt
9 stdcall ADsOpenObject(wstr wstr wstr long ptr ptr)
12 stub ADsSetLastError
13 st
ub ADsGetLastError
13 st
dcall ADsGetLastError(ptr ptr long ptr long)
14 stub AllocADsMem
15 stdcall FreeADsMem(ptr)
16 stub ReallocADsMem
...
...
dlls/activeds/activeds_main.c
View file @
3bad522f
...
...
@@ -95,6 +95,15 @@ HRESULT WINAPI ADsOpenObject(LPCWSTR lpszPathName, LPCWSTR lpszUserName, LPCWSTR
}
/*****************************************************
* 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]
*/
BOOL
WINAPI
FreeADsMem
(
LPVOID
pMem
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment