Commit 97827ead authored by Marcus Meissner's avatar Marcus Meissner Committed by Alexandre Julliard

Stubbed GetDeviceGammaRamp.

parent 866c5886
...@@ -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
@ stub GetDeviceGammaRamp @ stdcall 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
......
...@@ -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)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment