Subversion Repositories Kolibri OS

Rev

Go to most recent revision | Blame | Last modification | View Log | Download | RSS feed

  1.  
  2. extern void _pei386_runtime_relocator (void);
  3.  
  4. int DllStartup(void *module, int reason);// __attribute__ ((dllexport));
  5.  
  6.  
  7. int DllStartup(void *module, int reason)
  8. {
  9.     _pei386_runtime_relocator();
  10.     return 1;
  11. };
  12.  
  13. void  ___dll_start ()
  14.  
  15. {
  16.     _pei386_runtime_relocator();
  17.  
  18. }
  19.