Advertisement
Guest User

Onlykl

a guest
Jul 28th, 2009
270
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.42 KB | None | 0 0
  1. #include "StdAfx.h"
  2. #include "Setup.h"
  3. #define SKIP_ALLOCATOR_SHARING 1
  4. #include <ScriptSetup.h>
  5.  
  6. extern "C" SCRIPT_DECL uint32 _exp_get_script_type()
  7. {
  8.     return SCRIPT_TYPE_MISC;
  9. }
  10.  
  11. extern "C" SCRIPT_DECL void _exp_script_register(ScriptMgr* mgr)
  12. {
  13.  
  14.     SetupGlobalNPC(mgr);
  15. }
  16.  
  17. #ifdef WIN32
  18.  
  19. BOOL APIENTRY DllMain( HANDLE hModule, DWORD  ul_reason_for_call, LPVOID lpReserved )
  20. {
  21.     return TRUE;
  22. }
  23.  
  24. #endif
  25.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement