logo

libbulletml

Library of Bullet Markup Language (forked from https://shinh.skr.jp/libbulletml/index_en.html )git clone https://hacktivis.me/git/libbulletml.git

bulletml.cpp (799B)


  1. // bulletml.cpp : DLL アプリケーション用のエントリ ポイントを定義します。
  2. //
  3. #include "stdafx.h"
  4. #include "bulletml.h"
  5. BOOL APIENTRY DllMain( HANDLE hModule,
  6. DWORD ul_reason_for_call,
  7. LPVOID lpReserved
  8. )
  9. {
  10. switch (ul_reason_for_call)
  11. {
  12. case DLL_PROCESS_ATTACH:
  13. case DLL_THREAD_ATTACH:
  14. case DLL_THREAD_DETACH:
  15. case DLL_PROCESS_DETACH:
  16. break;
  17. }
  18. return TRUE;
  19. }
  20. // これはエクスポートされた変数の例です。
  21. BULLETML_API int nBulletml=0;
  22. // これはエクスポートされた関数の例です。
  23. BULLETML_API int fnBulletml(void)
  24. {
  25. return 42;
  26. }
  27. // これはエクスポートされたクラスのコンストラクタです。
  28. // クラスの定義については bulletml.h を参照してください。
  29. CBulletml::CBulletml()
  30. {
  31. return;
  32. }