blob: c28300ec3f4c5ccbe3a1d2ca6d81dd5c2bdfd0b7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#pragma once
#ifdef __cplusplus
extern "C" {
#endif
void PlatformInit(void);
int PlatformGetWiFiFileDescriptor(void);
int PlatformGetGPSFileDescriptor(void);
#ifdef __cplusplus
}
#endif
|