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
93aa9ebc
Commit
93aa9ebc
authored
Oct 03, 2009
by
Austin English
Committed by
Alexandre Julliard
Oct 08, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ntdll: Add a stub for NtQuerySystemEnvironmentValue.
parent
a78ccf11
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
14 additions
and
1 deletion
+14
-1
env.c
dlls/ntdll/env.c
+13
-0
ntdll.spec
dlls/ntdll/ntdll.spec
+1
-1
No files found.
dlls/ntdll/env.c
View file @
93aa9ebc
...
...
@@ -30,10 +30,23 @@
#include "wine/unicode.h"
#include "wine/debug.h"
#include "ntdll_misc.h"
#include "winnt.h"
WINE_DEFAULT_DEBUG_CHANNEL
(
environ
);
/******************************************************************************
* NtQuerySystemEnvironmentValue [NTDLL.@]
*/
NTSYSAPI
NTSTATUS
WINAPI
NtQuerySystemEnvironmentValue
(
PUNICODE_STRING
VariableName
,
PWCHAR
Value
,
ULONG
ValueBufferLength
,
PULONG
RequiredLength
)
{
FIXME
(
"stub!
\n
"
);
return
STATUS_NOT_IMPLEMENTED
;
}
/******************************************************************************
* RtlCreateEnvironment [NTDLL.@]
*/
NTSTATUS
WINAPI
RtlCreateEnvironment
(
BOOLEAN
inherit
,
PWSTR
*
env
)
...
...
dlls/ntdll/ntdll.spec
View file @
93aa9ebc
...
...
@@ -264,7 +264,7 @@
@ stdcall NtQuerySecurityObject (long long long long long)
@ stdcall NtQuerySemaphore (long long ptr long ptr)
@ stdcall NtQuerySymbolicLinkObject(long ptr ptr)
@ st
ub NtQuerySystemEnvironmentValue
@ st
dcall NtQuerySystemEnvironmentValue(ptr ptr long ptr)
# @ stub NtQuerySystemEnvironmentValueEx
@ stdcall NtQuerySystemInformation(long long long long)
@ stdcall NtQuerySystemTime(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