pal_utils.c 360 B

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