mirror of
https://github.com/reactos/reactos.git
synced 2024-12-27 01:24:38 +00:00
Sync to Wine-20050211
Alexandre Julliard <julliard@winehq.org> - It makes no sense to export the dll entry point as stub. svn path=/trunk/; revision=13517
This commit is contained in:
parent
f2d6147dc9
commit
b14fe2e98e
2 changed files with 13 additions and 1 deletions
|
@ -1,5 +1,5 @@
|
|||
@ stdcall AlphaBlend(long long long long long long long long long long long) gdi32.GdiAlphaBlend
|
||||
@ stub DllInitialize
|
||||
@ stdcall DllInitialize(long long ptr) DllMain
|
||||
@ stdcall GradientFill(long ptr long ptr long long) gdi32.GdiGradientFill
|
||||
@ stdcall TransparentBlt(long long long long long long long long long long long) gdi32.GdiTransparentBlt
|
||||
@ stdcall vSetDdrawflag()
|
||||
|
|
|
@ -26,6 +26,18 @@
|
|||
|
||||
WINE_DEFAULT_DEBUG_CHANNEL(msimg32);
|
||||
|
||||
/***********************************************************************
|
||||
* DllInitialize (MSIMG32.@)
|
||||
*
|
||||
* MSIMG32 initialisation routine.
|
||||
*/
|
||||
BOOL WINAPI DllMain( HINSTANCE inst, DWORD reason, LPVOID reserved )
|
||||
{
|
||||
if (reason == DLL_PROCESS_ATTACH) DisableThreadLibraryCalls( inst );
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
|
||||
/******************************************************************************
|
||||
* vSetDdrawflag (MSIMG32.@)
|
||||
*/
|
||||
|
|
Loading…
Reference in a new issue