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
3a2dfbd4
Commit
3a2dfbd4
authored
Sep 09, 2008
by
Detlef Riekenberg
Committed by
Alexandre Julliard
Sep 10, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
shlwapi: Add a stub for SHSetDefaultDialogFont.
parent
c51be54c
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
20 additions
and
1 deletion
+20
-1
ordinal.c
dlls/shlwapi/ordinal.c
+19
-0
shlwapi.spec
dlls/shlwapi/shlwapi.spec
+1
-1
No files found.
dlls/shlwapi/ordinal.c
View file @
3a2dfbd4
...
...
@@ -2261,6 +2261,25 @@ HRESULT WINAPI QISearch(
}
/*************************************************************************
* @ [SHLWAPI.220]
*
* Set the Font for a window and the "PropDlgFont" property of the parent window.
*
* PARAMS
* hWnd [I] Parent Window to set the property
* id [I] Index of child Window to set the Font
*
* RETURNS
* Success: S_OK
*
*/
HRESULT
WINAPI
SHSetDefaultDialogFont
(
HWND
hWnd
,
INT
id
)
{
FIXME
(
"(%p, %d) stub
\n
"
,
hWnd
,
id
);
return
S_OK
;
}
/*************************************************************************
* @ [SHLWAPI.221]
*
* Remove the "PropDlgFont" property from a window.
...
...
dlls/shlwapi/shlwapi.spec
View file @
3a2dfbd4
...
...
@@ -217,7 +217,7 @@
217 stdcall -noname SHUnicodeToAnsi(wstr ptr ptr)
218 stdcall -noname SHUnicodeToAnsiCP(long wstr ptr ptr)
219 stdcall -noname QISearch(long long long long)
220 st
ub -noname SHSetDefaultDialogFont
220 st
dcall -noname SHSetDefaultDialogFont(ptr long)
221 stdcall -noname SHRemoveDefaultDialogFont(ptr)
222 stdcall -noname SHGlobalCounterCreate(long)
223 stdcall -noname SHGlobalCounterGetValue(long)
...
...
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