mirror of
https://github.com/libretro/xmil-libretro.git
synced 2024-11-23 08:09:42 +00:00
11 lines
150 B
C++
11 lines
150 B
C++
#include "compiler.h"
|
|
#include "timemng.h"
|
|
|
|
|
|
BRESULT timemng_gettime(_SYSTIME *systime) {
|
|
|
|
GetLocalTime((SYSTEMTIME *)systime);
|
|
return(SUCCESS);
|
|
}
|
|
|