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
ee0b7663
Commit
ee0b7663
authored
Oct 25, 2009
by
Alexander Nicolaysen Sørnes
Committed by
Alexandre Julliard
Oct 26, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ntdll: Add RtlGetProductInfo stub.
parent
1c4c2bbf
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
19 additions
and
0 deletions
+19
-0
ntdll.spec
dlls/ntdll/ntdll.spec
+1
-0
version.c
dlls/ntdll/version.c
+18
-0
No files found.
dlls/ntdll/ntdll.spec
View file @
ee0b7663
...
...
@@ -636,6 +636,7 @@
@ stdcall RtlGetNtProductType(ptr)
@ stdcall RtlGetNtVersionNumbers(ptr ptr ptr)
@ stdcall RtlGetOwnerSecurityDescriptor(ptr ptr ptr)
@ stdcall RtlGetProductInfo(long long long long ptr)
@ stdcall RtlGetProcessHeaps(long ptr)
@ stdcall RtlGetSaclSecurityDescriptor(ptr ptr ptr ptr)
# @ stub RtlGetSecurityDescriptorRMControl
...
...
dlls/ntdll/version.c
View file @
ee0b7663
...
...
@@ -527,6 +527,24 @@ done:
current_version
->
wProductType
);
}
/***********************************************************************
* GetProductInfo (NTDLL.@)
*
* Gives info about the current Windows product type, in a format compatible
* with the given Windows version
*
* Returns TRUE if the input is valid, FALSE otherwise
*/
BOOLEAN
WINAPI
RtlGetProductInfo
(
DWORD
dwOSMajorVersion
,
DWORD
dwOSMinorVersion
,
DWORD
dwSpMajorVersion
,
DWORD
dwSpMinorVersion
,
PDWORD
pdwReturnedProductType
)
{
FIXME
(
"(%d,%d,%d,%d,%p): stub
\n
"
,
dwOSMajorVersion
,
dwOSMinorVersion
,
dwSpMajorVersion
,
dwSpMinorVersion
,
pdwReturnedProductType
);
*
pdwReturnedProductType
=
PRODUCT_ULTIMATE_N
;
return
TRUE
;
}
/***********************************************************************
* RtlGetVersion (NTDLL.@)
...
...
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