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
04201096
Commit
04201096
authored
Jun 05, 2012
by
André Hentschel
Committed by
Alexandre Julliard
Jun 06, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ntdll: Add stub for NtQuerySystemEnvironmentValueEx.
parent
6157f4a9
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
12 additions
and
2 deletions
+12
-2
env.c
dlls/ntdll/env.c
+11
-1
ntdll.spec
dlls/ntdll/ntdll.spec
+1
-1
No files found.
dlls/ntdll/env.c
View file @
04201096
...
@@ -42,7 +42,17 @@ NTSYSAPI NTSTATUS WINAPI NtQuerySystemEnvironmentValue(PUNICODE_STRING VariableN
...
@@ -42,7 +42,17 @@ NTSYSAPI NTSTATUS WINAPI NtQuerySystemEnvironmentValue(PUNICODE_STRING VariableN
ULONG
ValueBufferLength
,
ULONG
ValueBufferLength
,
PULONG
RequiredLength
)
PULONG
RequiredLength
)
{
{
FIXME
(
"stub!
\n
"
);
FIXME
(
"(%s, %p, %u, %p), stub
\n
"
,
debugstr_us
(
VariableName
),
Value
,
ValueBufferLength
,
RequiredLength
);
return
STATUS_NOT_IMPLEMENTED
;
}
/******************************************************************************
* NtQuerySystemEnvironmentValueEx [NTDLL.@]
*/
NTSYSAPI
NTSTATUS
WINAPI
NtQuerySystemEnvironmentValueEx
(
PUNICODE_STRING
name
,
LPGUID
vendor
,
PVOID
value
,
PULONG
retlength
,
PULONG
attrib
)
{
FIXME
(
"(%s, %s, %p, %p, %p), stub
\n
"
,
debugstr_us
(
name
),
debugstr_guid
(
vendor
),
value
,
retlength
,
attrib
);
return
STATUS_NOT_IMPLEMENTED
;
return
STATUS_NOT_IMPLEMENTED
;
}
}
...
...
dlls/ntdll/ntdll.spec
View file @
04201096
...
@@ -266,7 +266,7 @@
...
@@ -266,7 +266,7 @@
@ stdcall NtQuerySemaphore (long long ptr long ptr)
@ stdcall NtQuerySemaphore (long long ptr long ptr)
@ stdcall NtQuerySymbolicLinkObject(long ptr ptr)
@ stdcall NtQuerySymbolicLinkObject(long ptr ptr)
@ stdcall NtQuerySystemEnvironmentValue(ptr ptr long ptr)
@ stdcall NtQuerySystemEnvironmentValue(ptr ptr long ptr)
# @ stub NtQuerySystemEnvironmentValueEx
@ stdcall NtQuerySystemEnvironmentValueEx(ptr ptr ptr ptr ptr)
@ stdcall NtQuerySystemInformation(long long long long)
@ stdcall NtQuerySystemInformation(long long long long)
@ stdcall NtQuerySystemTime(ptr)
@ stdcall NtQuerySystemTime(ptr)
@ stdcall NtQueryTimer(ptr long ptr long ptr)
@ stdcall NtQueryTimer(ptr long ptr long ptr)
...
...
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