Advertisement
Guest User

Untitled

a guest
Dec 8th, 2018
179
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.43 KB | None | 0 0
  1. jni/../../os.cpp:186:3: error: unknown type name 'timeval'
  2. timeval tv;
  3. ^
  4. jni/../../os.cpp:305:3: error: use of undeclared identifier 'time'
  5. time(&rawtime);
  6. ^
  7. jni/../../os.cpp:308:14: error: use of undeclared identifier 'localtime'
  8. timeinfo = localtime(&rawtime);
  9. ^
  10. jni/../../os.cpp:316:27: error: member access into incomplete type 'struct tm'
  11. date.Hour=(u32)timeinfo->tm_hour;
  12. ^
  13. /run/media/main/Software/AndroidSDK/ndk-bundle/sources/android/support/include/wchar.h:189:8: note: forward declaration of 'tm'
  14. struct tm;
  15. ^
  16. jni/../../os.cpp:317:29: error: member access into incomplete type 'struct tm'
  17. date.Minute=(u32)timeinfo->tm_min;
  18. ^
  19. /run/media/main/Software/AndroidSDK/ndk-bundle/sources/android/support/include/wchar.h:189:8: note: forward declaration of 'tm'
  20. struct tm;
  21. ^
  22. jni/../../os.cpp:318:29: error: member access into incomplete type 'struct tm'
  23. date.Second=(u32)timeinfo->tm_sec;
  24. ^
  25. /run/media/main/Software/AndroidSDK/ndk-bundle/sources/android/support/include/wchar.h:189:8: note: forward declaration of 'tm'
  26. struct tm;
  27. ^
  28. jni/../../os.cpp:319:26: error: member access into incomplete type 'struct tm'
  29. date.Day=(u32)timeinfo->tm_mday;
  30. ^
  31. /run/media/main/Software/AndroidSDK/ndk-bundle/sources/android/support/include/wchar.h:189:8: note: forward declaration of 'tm'
  32. struct tm;
  33. ^
  34. jni/../../os.cpp:320:28: error: member access into incomplete type 'struct tm'
  35. date.Month=(u32)timeinfo->tm_mon+1;
  36. ^
  37. /run/media/main/Software/AndroidSDK/ndk-bundle/sources/android/support/include/wchar.h:189:8: note: forward declaration of 'tm'
  38. struct tm;
  39. ^
  40. jni/../../os.cpp:321:27: error: member access into incomplete type 'struct tm'
  41. date.Year=(u32)timeinfo->tm_year+1900;
  42. ^
  43. /run/media/main/Software/AndroidSDK/ndk-bundle/sources/android/support/include/wchar.h:189:8: note: forward declaration of 'tm'
  44. struct tm;
  45. ^
  46. jni/../../os.cpp:322:43: error: member access into incomplete type 'struct tm'
  47. date.Weekday=(ITimer::EWeekday)timeinfo->tm_wday;
  48. ^
  49. /run/media/main/Software/AndroidSDK/ndk-bundle/sources/android/support/include/wchar.h:189:8: note: forward declaration of 'tm'
  50. struct tm;
  51. ^
  52. jni/../../os.cpp:323:30: error: member access into incomplete type 'struct tm'
  53. date.Yearday=(u32)timeinfo->tm_yday+1;
  54. ^
  55. /run/media/main/Software/AndroidSDK/ndk-bundle/sources/android/support/include/wchar.h:189:8: note: forward declaration of 'tm'
  56. struct tm;
  57. ^
  58. jni/../../os.cpp:324:23: error: member access into incomplete type 'struct tm'
  59. date.IsDST=timeinfo->tm_isdst != 0;
  60. ^
  61. /run/media/main/Software/AndroidSDK/ndk-bundle/sources/android/support/include/wchar.h:189:8: note: forward declaration of 'tm'
  62. struct tm;
  63. ^
  64. 12 errors generated.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement