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
276ef66c
Commit
276ef66c
authored
Dec 24, 1998
by
Juergen Schmied
Committed by
Alexandre Julliard
Dec 24, 1998
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
New stubs.
parent
df3c5cfd
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
58 additions
and
7 deletions
+58
-7
nt.c
dlls/ntdll/nt.c
+37
-0
rtl.c
dlls/ntdll/rtl.c
+14
-0
ntdll.spec
relay32/ntdll.spec
+7
-7
No files found.
dlls/ntdll/nt.c
View file @
276ef66c
...
...
@@ -482,4 +482,41 @@ NTSTATUS WINAPI NtOpenSection(DWORD x1,DWORD x2,DWORD x3) {
FIXME
(
ntdll
,
"(0x%08lx,0x%08lx,0x%08lx),stub!
\n
"
,
x1
,
x2
,
x3
);
return
0
;
}
/******************************************************************************
* NtQueryPerformanceCounter [NTDLL]
*/
BOOL32
WINAPI
NtQueryPerformanceCounter
(
DWORD
x1
,
DWORD
x2
)
{
FIXME
(
ntdll
,
"(0x%08lx, 0x%08lx) stub!
\n
"
,
x1
,
x2
);
return
0
;
}
/******************************************************************************
* NtQuerySection [NTDLL]
*/
NTSTATUS
WINAPI
NtQuerySection
(
DWORD
x1
,
DWORD
x2
,
DWORD
x3
,
DWORD
x4
,
DWORD
x5
)
{
FIXME
(
ntdll
,
"(0x%08lx,0x%08lx,0x%08lx,0x%08lx,0x%08lx) stub!
\n
"
,
x1
,
x2
,
x3
,
x4
,
x5
);
return
0
;
}
/******************************************************************************
* NtQuerySecurityObject [NTDLL]
*/
NTSTATUS
WINAPI
NtQuerySecurityObject
(
DWORD
x1
,
DWORD
x2
,
DWORD
x3
,
DWORD
x4
,
DWORD
x5
)
{
FIXME
(
ntdll
,
"(0x%08lx,0x%08lx,0x%08lx,0x%08lx,0x%08lx) stub!
\n
"
,
x1
,
x2
,
x3
,
x4
,
x5
);
return
0
;
}
/******************************************************************************
* NtQuerySemaphore [NTDLL]
*/
NTSTATUS
WINAPI
NtQuerySemaphore
(
DWORD
x1
,
DWORD
x2
,
DWORD
x3
,
DWORD
x4
,
DWORD
x5
)
{
FIXME
(
ntdll
,
"(0x%08lx,0x%08lx,0x%08lx,0x%08lx,0x%08lx) stub!
\n
"
,
x1
,
x2
,
x3
,
x4
,
x5
);
return
0
;
}
/******************************************************************************
* NtEnumerateValueKey [NTDLL]
*/
NTSTATUS
WINAPI
NtEnumerateValueKey
(
DWORD
x1
,
DWORD
x2
,
DWORD
x3
,
DWORD
x4
,
DWORD
x5
,
DWORD
x6
)
{
FIXME
(
ntdll
,
"(0x%08lx,0x%08lx,0x%08lx,0x%08lx,0x%08lx,0x%08lx) stub!
\n
"
,
x1
,
x2
,
x3
,
x4
,
x5
,
x6
);
return
1
;
}
dlls/ntdll/rtl.c
View file @
276ef66c
...
...
@@ -828,3 +828,17 @@ DWORD WINAPI RtlTimeToTimeFields(DWORD x1,DWORD x2) {
FIXME
(
ntdll
,
"(0x%08lx,0x%08lx),stub!
\n
"
,
x1
,
x2
);
return
0
;
}
/******************************************************************************
* RtlInitializeResource [NTDLL]
*/
NTSTATUS
WINAPI
RtlInitializeResource
(
DWORD
x1
)
{
FIXME
(
ntdll
,
"(0x%08lx),stub!
\n
"
,
x1
);
return
0
;
}
/******************************************************************************
* RtlCompareUnicodeString [NTDLL]
*/
NTSTATUS
WINAPI
RtlCompareUnicodeString
(
LPUNICODE_STRING
x1
,
LPUNICODE_STRING
x2
,
DWORD
x3
)
{
FIXME
(
ntdll
,
"(0x%08lx,0x%08lx,0x%08lx),stub!
\n
"
,
debugstr_w
(
x1
->
Buffer
),
debugstr_w
(
x2
->
Buffer
),
x3
);
return
0
;
}
relay32/ntdll.spec
View file @
276ef66c
...
...
@@ -105,7 +105,7 @@ type win32
097 stdcall NtDuplicateToken(long long long long long long) NtDuplicateToken
098 stub NtEnumerateBus
099 stub NtEnumerateKey
100 st
ub
NtEnumerateValueKey
100 st
dcall NtEnumerateValueKey (long long long long long long)
NtEnumerateValueKey
101 stub NtExtendSection
102 stub NtFlushBuffersFile
103 stub NtFlushInstructionCache
...
...
@@ -167,10 +167,10 @@ type win32
159 stub NtQueryKey
160 stub NtQueryMutant
161 stdcall NtQueryObject(long long long long long) NtQueryObject
162 st
ub
NtQueryPerformanceCounter
163 st
ub
NtQuerySection
164 st
ub
NtQuerySecurityObject
165 st
ub
NtQuerySemaphore
162 st
dcall NtQueryPerformanceCounter (long long)
NtQueryPerformanceCounter
163 st
dcall NtQuerySection (long long long long long)
NtQuerySection
164 st
dcall NtQuerySecurityObject (long long long long long)
NtQuerySecurityObject
165 st
dcall NtQuerySemaphore (long long long long long)
NtQuerySemaphore
166 stub NtQuerySymbolicLinkObject
167 stub NtQuerySystemEnvironmentValue
168 stdcall NtQuerySystemInformation(long long long long) NtQuerySystemInformation
...
...
@@ -295,7 +295,7 @@ type win32
287 stub RtlCompareMemory
288 stub RtlCompareMemoryUlong
289 stub RtlCompareString
290 st
ub
RtlCompareUnicodeString
290 st
dcall RtlCompareUnicodeString (ptr ptr long)
RtlCompareUnicodeString
291 stub RtlCompressBuffer
292 stub RtlConsoleMultiByteToUnicodeN
293 stub RtlConvertExclusiveToShared
...
...
@@ -414,7 +414,7 @@ type win32
406 stdcall RtlInitializeCriticalSection(ptr) InitializeCriticalSection
407 stub RtlInitializeGenericTable
408 stub RtlInitializeRXact
409 st
ub
RtlInitializeResource
409 st
dcall RtlInitializeResource(long)
RtlInitializeResource
410 stdcall RtlInitializeSid(ptr ptr long) RtlInitializeSid
411 stub RtlInsertElementGenericTable
412 stdcall RtlIntegerToChar(long long long long) RtlIntegerToChar
...
...
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