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
97827ead
Commit
97827ead
authored
Oct 13, 2000
by
Marcus Meissner
Committed by
Alexandre Julliard
Oct 13, 2000
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Stubbed GetDeviceGammaRamp.
parent
866c5886
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
1 deletion
+8
-1
gdi32.spec
dlls/gdi/gdi32.spec
+1
-1
dc.c
objects/dc.c
+7
-0
No files found.
dlls/gdi/gdi32.spec
View file @
97827ead
...
@@ -205,7 +205,7 @@ import kernel32.dll
...
@@ -205,7 +205,7 @@ import kernel32.dll
@ stdcall GetDIBColorTable(long long long ptr) GetDIBColorTable
@ stdcall GetDIBColorTable(long long long ptr) GetDIBColorTable
@ stdcall GetDIBits(long long long long ptr ptr long) GetDIBits
@ stdcall GetDIBits(long long long long ptr ptr long) GetDIBits
@ stdcall GetDeviceCaps(long long) GetDeviceCaps
@ stdcall GetDeviceCaps(long long) GetDeviceCaps
@ st
ub
GetDeviceGammaRamp
@ st
dcall GetDeviceGammaRamp(long ptr)
GetDeviceGammaRamp
@ stub GetETM
@ stub GetETM
@ stdcall GetEnhMetaFileA(str) GetEnhMetaFileA
@ stdcall GetEnhMetaFileA(str) GetEnhMetaFileA
@ stdcall GetEnhMetaFileBits(long long ptr) GetEnhMetaFileBits
@ stdcall GetEnhMetaFileBits(long long ptr) GetEnhMetaFileBits
...
...
objects/dc.c
View file @
97827ead
...
@@ -1284,6 +1284,13 @@ INT WINAPI SetICMMode(HDC hdc, INT iEnableICM)
...
@@ -1284,6 +1284,13 @@ INT WINAPI SetICMMode(HDC hdc, INT iEnableICM)
return
0
;
return
0
;
}
}
/***********************************************************************
* GetDeviceGammaRamp (GDI32.*)
*/
BOOL
WINAPI
GetDeviceGammaRamp
(
HDC
hdc
,
LPVOID
ptr
)
{
FIXME
(
"(%x,%p), empty stub!
\n
"
,
hdc
,
ptr
);
return
FALSE
;
}
/***********************************************************************
/***********************************************************************
* GetColorSpace (GDI32.165)
* GetColorSpace (GDI32.165)
...
...
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