em.c 434 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. #include "palcommon.h"
  2. #include "global.h"
  3. #include "palcfg.h"
  4. BOOL
  5. UTIL_GetScreenSize(
  6. DWORD *pdwScreenWidth,
  7. DWORD *pdwScreenHeight
  8. )
  9. {
  10. *pdwScreenWidth = 640;
  11. *pdwScreenHeight = 400;
  12. return TRUE;
  13. }
  14. BOOL
  15. UTIL_IsAbsolutePath(
  16. LPCSTR lpszFileName
  17. )
  18. {
  19. return FALSE;
  20. }
  21. INT
  22. UTIL_Platform_Init(
  23. int argc,
  24. char* argv[]
  25. )
  26. {
  27. gConfig.fLaunchSetting = FALSE;
  28. return 0;
  29. }
  30. VOID
  31. UTIL_Platform_Quit(
  32. VOID
  33. )
  34. {
  35. }