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
827e8521
Commit
827e8521
authored
May 16, 2011
by
Jacek Caban
Committed by
Alexandre Julliard
May 16, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
kernel32: Moved EnumPageFiles[AW] implementation to kernel32.
parent
0909f2e0
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
23 additions
and
20 deletions
+23
-20
kernel32.spec
dlls/kernel32/kernel32.spec
+2
-0
virtual.c
dlls/kernel32/virtual.c
+19
-0
psapi.spec
dlls/psapi/psapi.spec
+2
-2
psapi_main.c
dlls/psapi/psapi_main.c
+0
-18
No files found.
dlls/kernel32/kernel32.spec
View file @
827e8521
...
...
@@ -771,6 +771,8 @@
@ stdcall K32GetProcessImageFileNameA(long ptr long)
@ stdcall K32GetProcessImageFileNameW(long ptr long)
@ stdcall K32EnumDeviceDrivers(ptr long ptr)
@ stdcall K32EnumPageFilesA(ptr ptr)
@ stdcall K32EnumPageFilesW(ptr ptr)
@ stdcall K32EnumProcessModules(long ptr long ptr)
@ stdcall K32EnumProcesses(ptr long ptr)
@ stdcall K32GetDeviceDriverBaseNameA(ptr ptr long)
...
...
dlls/kernel32/virtual.c
View file @
827e8521
...
...
@@ -39,6 +39,7 @@
#include "winnls.h"
#include "winternl.h"
#include "winerror.h"
#include "psapi.h"
#include "wine/exception.h"
#include "wine/debug.h"
...
...
@@ -850,3 +851,21 @@ DWORD WINAPI K32GetMappedFileNameW(HANDLE process, LPVOID lpv, LPWSTR file_name,
return
0
;
}
/***********************************************************************
* K32EnumPageFilesA (KERNEL32.@)
*/
BOOL
WINAPI
K32EnumPageFilesA
(
PENUM_PAGE_FILE_CALLBACKA
callback
,
LPVOID
context
)
{
FIXME_
(
file
)(
"(%p, %p) stub
\n
"
,
callback
,
context
);
return
FALSE
;
}
/***********************************************************************
* K32EnumPageFilesW (KERNEL32.@)
*/
BOOL
WINAPI
K32EnumPageFilesW
(
PENUM_PAGE_FILE_CALLBACKW
callback
,
LPVOID
context
)
{
FIXME_
(
file
)(
"(%p, %p) stub
\n
"
,
callback
,
context
);
return
FALSE
;
}
dlls/psapi/psapi.spec
View file @
827e8521
@ stdcall EmptyWorkingSet(long) kernel32.K32EmptyWorkingSet
@ stdcall EnumDeviceDrivers(ptr long ptr) kernel32.K32EnumDeviceDrivers
@ stdcall EnumPageFilesA(ptr ptr)
@ stdcall EnumPageFilesW(ptr ptr)
@ stdcall EnumPageFilesA(ptr ptr)
kernel32.K32EnumPageFilesA
@ stdcall EnumPageFilesW(ptr ptr)
kernel32.K32EnumPageFilesW
@ stdcall EnumProcessModules(long ptr long ptr) kernel32.K32EnumProcessModules
@ stdcall EnumProcesses(ptr long ptr) kernel32.K32EnumProcesses
@ stdcall GetDeviceDriverBaseNameA(ptr ptr long) kernel32.K32GetDeviceDriverBaseNameA
...
...
dlls/psapi/psapi_main.c
View file @
827e8521
...
...
@@ -34,24 +34,6 @@
WINE_DEFAULT_DEBUG_CHANNEL
(
psapi
);
/***********************************************************************
* EnumPageFilesA (PSAPI.@)
*/
BOOL
WINAPI
EnumPageFilesA
(
PENUM_PAGE_FILE_CALLBACKA
callback
,
LPVOID
context
)
{
FIXME
(
"(%p, %p) stub
\n
"
,
callback
,
context
);
return
FALSE
;
}
/***********************************************************************
* EnumPageFilesW (PSAPI.@)
*/
BOOL
WINAPI
EnumPageFilesW
(
PENUM_PAGE_FILE_CALLBACKW
callback
,
LPVOID
context
)
{
FIXME
(
"(%p, %p) stub
\n
"
,
callback
,
context
);
return
FALSE
;
}
/***********************************************************************
* GetPerformanceInfo (PSAPI.@)
...
...
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