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
ca6c9a6a
Commit
ca6c9a6a
authored
Mar 20, 2001
by
Eric Kohl
Committed by
Alexandre Julliard
Mar 20, 2001
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added stubs for GetWindowsModuleFileName[A/W].
parent
627aa4d7
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
23 additions
and
0 deletions
+23
-0
user32.spec
dlls/user/user32.spec
+2
-0
win.c
windows/win.c
+21
-0
No files found.
dlls/user/user32.spec
View file @
ca6c9a6a
...
...
@@ -655,6 +655,8 @@ debug_channels (accel caret class clipboard combo cursor dc ddeml dialog driver
@ stdcall DrawMenuBarTemp(long long) DrawMenuBarTemp
@ stdcall EnumDisplaySettingsExA(str long ptr long) EnumDisplaySettingsExA
@ stdcall EnumDisplaySettingsExW(wstr long ptr long) EnumDisplaySettingsExW
@ stdcall GetWindowModuleFileNameA(long ptr long) GetWindowModuleFileNameA
@ stdcall GetWindowModuleFileNameW(long ptr long) GetWindowModuleFileNameW
################################################################
# Wine extensions: Win16 functions that are needed by other dlls
...
...
windows/win.c
View file @
ca6c9a6a
...
...
@@ -3383,3 +3383,24 @@ DWORD WINAPI DragObject16( HWND16 hwndScope, HWND16 hWnd, UINT16 wObj,
return
(
DWORD
)(
msg
.
lParam
);
}
/******************************************************************************
* GetWindowModuleFileNameA (USER32.@)
*/
UINT
WINAPI
GetWindowModuleFileNameA
(
HWND
hwnd
,
LPSTR
lpszFileName
,
UINT
cchFileNameMax
)
{
FIXME
(
"GetWindowModuleFileNameA(hwnd 0x%x, lpszFileName %p, cchFileNameMax %u) stub!
\n
"
,
hwnd
,
lpszFileName
,
cchFileNameMax
);
return
0
;
}
/******************************************************************************
* GetWindowModuleFileNameW (USER32.@)
*/
UINT
WINAPI
GetWindowModuleFileNameW
(
HWND
hwnd
,
LPSTR
lpszFileName
,
UINT
cchFileNameMax
)
{
FIXME
(
"GetWindowModuleFileNameW(hwnd 0x%x, lpszFileName %p, cchFileNameMax %u) stub!
\n
"
,
hwnd
,
lpszFileName
,
cchFileNameMax
);
return
0
;
}
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