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
4bdeae37
Commit
4bdeae37
authored
May 11, 2003
by
Huw Davies
Committed by
Alexandre Julliard
May 11, 2003
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added stub for SetVirtualResolution.
parent
4d837749
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
12 additions
and
1 deletion
+12
-1
gdi32.spec
dlls/gdi/gdi32.spec
+1
-1
dc.c
objects/dc.c
+11
-0
No files found.
dlls/gdi/gdi32.spec
View file @
4bdeae37
...
...
@@ -383,7 +383,7 @@
@ stdcall SetTextJustification(long long long)
@ stdcall SetViewportExtEx(long long long ptr)
@ stdcall SetViewportOrgEx(long long long ptr)
@ st
ub SetVirtualResolution
@ st
dcall SetVirtualResolution(long long long long long)
@ stdcall SetWinMetaFileBits(long ptr long ptr)
@ stdcall SetWindowExtEx(long long long ptr)
@ stdcall SetWindowOrgEx(long long long ptr)
...
...
objects/dc.c
View file @
4bdeae37
...
...
@@ -1407,3 +1407,14 @@ COLORREF WINAPI SetDCBrushColor(HDC hdc, COLORREF crColor)
SetLastError
(
ERROR_CALL_NOT_IMPLEMENTED
);
return
CLR_INVALID
;
}
/***********************************************************************
* SetVirtualResolution (GDI32.@)
*
* Undocumented on msdn. Called when powerpoint xp saves a file.
*/
DWORD
WINAPI
SetVirtualResolution
(
HDC
hdc
,
DWORD
dw2
,
DWORD
dw3
,
DWORD
dw4
,
DWORD
dw5
)
{
FIXME
(
"(%p %08lx %08lx %08lx %08lx): stub!
\n
"
,
hdc
,
dw2
,
dw3
,
dw4
,
dw5
);
return
FALSE
;
}
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