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
abdb2dbc
Commit
abdb2dbc
authored
Aug 15, 2006
by
Robert Reif
Committed by
Alexandre Julliard
Aug 16, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
kernel32: Add GetNativeSystemInfo.
parent
485484de
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
12 additions
and
1 deletion
+12
-1
cpu.c
dlls/kernel/cpu.c
+10
-0
kernel32.spec
dlls/kernel/kernel32.spec
+1
-1
winbase.h
include/winbase.h
+1
-0
No files found.
dlls/kernel/cpu.c
View file @
abdb2dbc
...
...
@@ -779,6 +779,16 @@ VOID WINAPI GetSystemInfo(
/***********************************************************************
* GetNativeSystemInfo [KERNEL32.@]
*/
VOID
WINAPI
GetNativeSystemInfo
(
LPSYSTEM_INFO
si
/* [out] Destination for system information, may not be NULL */
)
{
FIXME
(
"(%p) using GetSystemInfo()
\n
"
,
si
);
GetSystemInfo
(
si
);
}
/***********************************************************************
* IsProcessorFeaturePresent [KERNEL32.@]
*
* Determine if the cpu supports a given feature.
...
...
dlls/kernel/kernel32.spec
View file @
abdb2dbc
...
...
@@ -546,7 +546,7 @@
@ stdcall GetNamedPipeHandleStateA(long ptr ptr ptr ptr str long)
@ stdcall GetNamedPipeHandleStateW(long ptr ptr ptr ptr wstr long)
@ stdcall GetNamedPipeInfo(long ptr ptr ptr ptr)
# @ stub GetNativeSystemInfo
@ stdcall GetNativeSystemInfo(ptr)
@ stub GetNextVDMCommand
@ stub GetNlsSectionName
# @ stub GetNumaAvailableMemory
...
...
include/winbase.h
View file @
abdb2dbc
...
...
@@ -1581,6 +1581,7 @@ BOOL WINAPI GetNamedPipeHandleStateA(HANDLE,LPDWORD,LPDWORD,LPDWORD,LPDWO
BOOL
WINAPI
GetNamedPipeHandleStateW
(
HANDLE
,
LPDWORD
,
LPDWORD
,
LPDWORD
,
LPDWORD
,
LPWSTR
,
DWORD
);
#define GetNamedPipeHandleState WINELIB_NAME_AW(GetNamedPipeHandleState)
BOOL
WINAPI
GetNamedPipeInfo
(
HANDLE
,
LPDWORD
,
LPDWORD
,
LPDWORD
,
LPDWORD
);
VOID
WINAPI
GetNativeSystemInfo
(
LPSYSTEM_INFO
);
BOOL
WINAPI
GetNumberOfEventLogRecords
(
HANDLE
,
PDWORD
);
BOOL
WINAPI
GetOldestEventLogRecord
(
HANDLE
,
PDWORD
);
BOOL
WINAPI
GetOverlappedResult
(
HANDLE
,
LPOVERLAPPED
,
LPDWORD
,
BOOL
);
...
...
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