Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
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-winehq
Commits
e529d360
Commit
e529d360
authored
Apr 13, 2000
by
Andreas Mohr
Committed by
Alexandre Julliard
Apr 13, 2000
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Stub for NtAllocateUuids.
parent
0c3594a9
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
13 additions
and
1 deletion
+13
-1
ntdll.spec
dlls/ntdll/ntdll.spec
+1
-1
om.c
dlls/ntdll/om.c
+12
-0
No files found.
dlls/ntdll/ntdll.spec
View file @
e529d360
...
...
@@ -64,7 +64,7 @@ type win32
@ stub NtAlertResumeThread
@ stub NtAlertThread
@ stdcall NtAllocateLocallyUniqueId(ptr) NtAllocateLocallyUniqueId
@ st
ub
NtAllocateUuids
@ st
dcall NtAllocateUuids(ptr ptr ptr)
NtAllocateUuids
@ stub NtAllocateVirtualMemory
@ stub NtCallbackReturn
@ stub NtCancelIoFile
...
...
dlls/ntdll/om.c
View file @
e529d360
...
...
@@ -346,3 +346,15 @@ NTSTATUS WINAPI NtQuerySymbolicLinkObject(
return
0
;
}
/******************************************************************************
* NtAllocateUuids [NTDLL]
*
* I have seen lpdwCount pointing to a pointer once...
*/
NTSTATUS
WINAPI
NtAllocateUuids
(
LPDWORD
lpdwCount
,
LPDWORD
*
p2
,
LPDWORD
*
p3
)
{
FIXME
(
"(%p[%d],%p,%p), stub.
\n
"
,
lpdwCount
,
lpdwCount
?
*
lpdwCount
:
0
,
p2
,
p3
);
return
0
;
}
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