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
fa804252
Commit
fa804252
authored
Jan 22, 2015
by
Austin English
Committed by
Alexandre Julliard
Jan 26, 2015
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
kernel32: Add GetSystemFirmwareTable stub.
parent
cdc4022a
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
14 additions
and
2 deletions
+14
-2
api-ms-win-core-sysinfo-l1-2-0.spec
...n-core-sysinfo-l1-2-0/api-ms-win-core-sysinfo-l1-2-0.spec
+1
-1
api-ms-win-core-sysinfo-l1-2-1.spec
...n-core-sysinfo-l1-2-1/api-ms-win-core-sysinfo-l1-2-1.spec
+1
-1
kernel32.spec
dlls/kernel32/kernel32.spec
+1
-0
process.c
dlls/kernel32/process.c
+10
-0
winbase.h
include/winbase.h
+1
-0
No files found.
dlls/api-ms-win-core-sysinfo-l1-2-0/api-ms-win-core-sysinfo-l1-2-0.spec
View file @
fa804252
...
...
@@ -9,7 +9,7 @@
@ stdcall GetProductInfo(long long long long ptr) kernel32.GetProductInfo
@ stdcall GetSystemDirectoryA(ptr long) kernel32.GetSystemDirectoryA
@ stdcall GetSystemDirectoryW(ptr long) kernel32.GetSystemDirectoryW
@ st
ub
GetSystemFirmwareTable
@ st
dcall GetSystemFirmwareTable(long long ptr long) kernel32.
GetSystemFirmwareTable
@ stdcall GetSystemInfo(ptr) kernel32.GetSystemInfo
@ stdcall GetSystemTime(ptr) kernel32.GetSystemTime
@ stdcall GetSystemTimeAdjustment(ptr ptr ptr) kernel32.GetSystemTimeAdjustment
...
...
dlls/api-ms-win-core-sysinfo-l1-2-1/api-ms-win-core-sysinfo-l1-2-1.spec
View file @
fa804252
...
...
@@ -11,7 +11,7 @@
@ stdcall GetProductInfo(long long long long ptr) kernel32.GetProductInfo
@ stdcall GetSystemDirectoryA(ptr long) kernel32.GetSystemDirectoryA
@ stdcall GetSystemDirectoryW(ptr long) kernel32.GetSystemDirectoryW
@ st
ub
GetSystemFirmwareTable
@ st
dcall GetSystemFirmwareTable(long long ptr long) kernel32.
GetSystemFirmwareTable
@ stdcall GetSystemInfo(ptr) kernel32.GetSystemInfo
@ stdcall GetSystemTime(ptr) kernel32.GetSystemTime
@ stdcall GetSystemTimeAdjustment(ptr ptr ptr) kernel32.GetSystemTimeAdjustment
...
...
dlls/kernel32/kernel32.spec
View file @
fa804252
...
...
@@ -650,6 +650,7 @@
@ stdcall GetSystemDEPPolicy()
@ stdcall GetSystemDirectoryA(ptr long)
@ stdcall GetSystemDirectoryW(ptr long)
@ stdcall GetSystemFirmwareTable(long long ptr long)
@ stdcall GetSystemInfo(ptr)
@ stdcall GetSystemPowerStatus(ptr)
@ stdcall GetSystemRegistryQuota(ptr ptr)
...
...
dlls/kernel32/process.c
View file @
fa804252
...
...
@@ -4004,3 +4004,13 @@ HRESULT WINAPI UnregisterApplicationRestart(void)
SetLastError
(
ERROR_CALL_NOT_IMPLEMENTED
);
return
S_OK
;
}
/***********************************************************************
* GetSystemFirmwareTable (KERNEL32.@)
*/
UINT
WINAPI
GetSystemFirmwareTable
(
DWORD
provider
,
DWORD
id
,
PVOID
buffer
,
DWORD
size
)
{
FIXME
(
"(%d %d %p %d):stub
\n
"
,
provider
,
id
,
buffer
,
size
);
SetLastError
(
ERROR_CALL_NOT_IMPLEMENTED
);
return
0
;
}
include/winbase.h
View file @
fa804252
...
...
@@ -2008,6 +2008,7 @@ WINBASEAPI HANDLE WINAPI GetStdHandle(DWORD);
WINBASEAPI
UINT
WINAPI
GetSystemDirectoryA
(
LPSTR
,
UINT
);
WINBASEAPI
UINT
WINAPI
GetSystemDirectoryW
(
LPWSTR
,
UINT
);
#define GetSystemDirectory WINELIB_NAME_AW(GetSystemDirectory)
WINBASEAPI
UINT
WINAPI
GetSystemFirmwareTable
(
DWORD
,
DWORD
,
PVOID
,
DWORD
);
WINBASEAPI
VOID
WINAPI
GetSystemInfo
(
LPSYSTEM_INFO
);
WINBASEAPI
BOOL
WINAPI
GetSystemPowerStatus
(
LPSYSTEM_POWER_STATUS
);
WINBASEAPI
BOOL
WINAPI
GetSystemRegistryQuota
(
PDWORD
,
PDWORD
);
...
...
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