* dcrt0.cc (dll_crt0_0): Remove unneeded __stdcall decoration.
* init.cc: Reflect change to dll_crt0_0 in declaration.
This commit is contained in:
parent
8f19b4b64f
commit
6072b95eeb
|
@ -1,3 +1,8 @@
|
||||||
|
2011-08-18 Christopher Faylor <me.cygwin2011@cgf.cx>
|
||||||
|
|
||||||
|
* dcrt0.cc (dll_crt0_0): Remove unneeded __stdcall decoration.
|
||||||
|
* init.cc: Reflect change to dll_crt0_0 in declaration.
|
||||||
|
|
||||||
2011-08-18 Corinna Vinschen <corinna@vinschen.de>
|
2011-08-18 Corinna Vinschen <corinna@vinschen.de>
|
||||||
|
|
||||||
* dtable.cc (dtable::get_debugger_info): Add missing braces.
|
* dtable.cc (dtable::get_debugger_info): Add missing braces.
|
||||||
|
|
|
@ -649,7 +649,7 @@ init_windows_system_directory ()
|
||||||
windows_system_directory[windows_system_directory_length] = L'\0';
|
windows_system_directory[windows_system_directory_length] = L'\0';
|
||||||
}
|
}
|
||||||
|
|
||||||
void __stdcall
|
void
|
||||||
dll_crt0_0 ()
|
dll_crt0_0 ()
|
||||||
{
|
{
|
||||||
init_windows_system_directory ();
|
init_windows_system_directory ();
|
||||||
|
|
|
@ -110,7 +110,7 @@ respawn_wow64_process ()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
extern void __stdcall dll_crt0_0 ();
|
void dll_crt0_0 ();
|
||||||
|
|
||||||
extern "C" BOOL WINAPI
|
extern "C" BOOL WINAPI
|
||||||
dll_entry (HANDLE h, DWORD reason, void *static_load)
|
dll_entry (HANDLE h, DWORD reason, void *static_load)
|
||||||
|
|
Loading…
Reference in New Issue