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
4fd5bf40
Commit
4fd5bf40
authored
Aug 10, 2005
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Implemented RtlGetNtProductType.
parent
1de5d3cc
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
10 deletions
+10
-10
rtl.c
dlls/ntdll/rtl.c
+0
-10
version.c
dlls/ntdll/version.c
+10
-0
No files found.
dlls/ntdll/rtl.c
View file @
4fd5bf40
...
...
@@ -384,16 +384,6 @@ DWORD WINAPI RtlDeleteSecurityObject(DWORD x1) {
}
/**************************************************************************
* RtlGetNtProductType [NTDLL.@]
*/
BOOLEAN
WINAPI
RtlGetNtProductType
(
LPDWORD
type
)
{
FIXME
(
"(%p): stub
\n
"
,
type
);
*
type
=
3
;
/* dunno. 1 for client, 3 for server? */
return
1
;
}
/**************************************************************************
* _chkstk [NTDLL.@]
*
* Glorified "enter xxxx".
...
...
dlls/ntdll/version.c
View file @
4fd5bf40
...
...
@@ -329,6 +329,16 @@ void WINAPI RtlGetNtVersionNumbers( LPDWORD major, LPDWORD minor, LPDWORD build
/******************************************************************************
* RtlGetNtProductType (NTDLL.@)
*/
BOOLEAN
WINAPI
RtlGetNtProductType
(
LPDWORD
type
)
{
if
(
type
)
*
type
=
current_version
->
wProductType
;
return
TRUE
;
}
/******************************************************************************
* VerifyVersionInfoW (KERNEL32.@)
*/
NTSTATUS
WINAPI
RtlVerifyVersionInfo
(
const
RTL_OSVERSIONINFOEXW
*
info
,
...
...
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