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
de94cfd7
Commit
de94cfd7
authored
Nov 30, 2008
by
Vitaliy Margolen
Committed by
Alexandre Julliard
Dec 01, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ntdll: Stub NtMakeTemporaryObject.
parent
7926eba0
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
21 additions
and
2 deletions
+21
-2
ntdll.spec
dlls/ntdll/ntdll.spec
+2
-2
om.c
dlls/ntdll/om.c
+19
-0
No files found.
dlls/ntdll/ntdll.spec
View file @
de94cfd7
...
...
@@ -195,7 +195,7 @@
# @ stub NtLockRegistryKey
@ stdcall NtLockVirtualMemory(long ptr ptr long)
# @ stub NtMakePermanentObject
@ st
ub NtMakeTemporaryObject
@ st
dcall NtMakeTemporaryObject(long)
# @ stub NtMapUserPhysicalPages
# @ stub NtMapUserPhysicalPagesScatter
@ stdcall NtMapViewOfSection(long long ptr long long ptr ptr long long long)
...
...
@@ -1039,7 +1039,7 @@
# @ stub ZwLockRegistryKey
@ stdcall ZwLockVirtualMemory(long ptr ptr long) NtLockVirtualMemory
# @ stub ZwMakePermanentObject
@ st
ub Zw
MakeTemporaryObject
@ st
dcall ZwMakeTemporaryObject(long) Nt
MakeTemporaryObject
# @ stub ZwMapUserPhysicalPages
# @ stub ZwMapUserPhysicalPagesScatter
@ stdcall ZwMapViewOfSection(long long ptr long long ptr ptr long long long) NtMapViewOfSection
...
...
dlls/ntdll/om.c
View file @
de94cfd7
...
...
@@ -616,3 +616,22 @@ NTSTATUS WINAPI NtAllocateUuids(
FIXME
(
"(%p,%p,%p), stub.
\n
"
,
Time
,
Range
,
Sequence
);
return
0
;
}
/**************************************************************************
* NtMakeTemporaryObject [NTDLL.@]
* ZwMakeTemporaryObject [NTDLL.@]
*
* Make a permanent object temporary.
*
* PARAMS
* Handle [I] handle to permanent object
*
* RETURNS
* Success: STATUS_SUCCESS.
* Failure: An NTSTATUS error code.
*/
NTSTATUS
WINAPI
NtMakeTemporaryObject
(
HANDLE
Handle
)
{
FIXME
(
"(%p), stub.
\n
"
,
Handle
);
return
STATUS_SUCCESS
;
}
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