mirror of
https://github.com/KolibriOS/kolibrios.git
synced 2024-12-16 20:02:35 +03:00
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();
|
||
|
|
||
|
}
|