pal_utils.c 387 B

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