forked from KolibriOS/kolibrios
754f9336f0
git-svn-id: svn://kolibrios.org@4349 a494cfbc-eb01-0410-851d-a64ba20cac60
16 lines
218 B
C
16 lines
218 B
C
|
|
extern void _pei386_runtime_relocator (void);
|
|
|
|
int DllStartup(void *module, int reason)
|
|
{
|
|
_pei386_runtime_relocator();
|
|
return 1;
|
|
};
|
|
|
|
void ___dll_start ()
|
|
|
|
{
|
|
_pei386_runtime_relocator();
|
|
|
|
}
|