Counter Strike : Global Offensive Source Code
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

35 lines
1.3 KiB

  1. /* -------------------------------- mgrdll.c -------------------------------- */
  2. #include <windows.h>
  3. #include <wintab.h>
  4. /* -------------------------------------------------------------------------- */
  5. /* Win32 dll entry/exit point. */
  6. /* -------------------------------------------------------------------------- */
  7. BOOL WINAPI DllMain(HINSTANCE hModule, DWORD dwReason, LPVOID lpvReserved)
  8. {
  9. return TRUE;
  10. }
  11. /* -------------------------------------------------------------------------- */
  12. /* Win16 dll entry point. */
  13. /* -------------------------------------------------------------------------- */
  14. BOOL WINAPI LibMain(HANDLE hModule, WORD wDataSeg, WORD cbHeapSize,
  15. LPSTR lpCmdLine)
  16. {
  17. return TRUE;
  18. }
  19. /* -------------------------------------------------------------------------- */
  20. /* Win16 dll exit point. */
  21. /* -------------------------------------------------------------------------- */
  22. int WINAPI WEP(int nSystemExit)
  23. {
  24. return TRUE;
  25. }
  26. /* -------------------------------------------------------------------------- */
  27. BOOL CALLBACK CBRTestProc(HCTX hCtx, HWND hWnd)
  28. {
  29. MessageBox(hWnd, "WTMgrConfigReplace() test succeeded!", "MgrTest",
  30. MB_ICONINFORMATION | MB_OK);
  31. return(FALSE);
  32. }
  33. /* -------------------------------------------------------------------------- */
  34.