mirror of
https://github.com/pvvx/rtl00TstMinAmebaV35a.git
synced 2024-11-23 01:54:14 +00:00
22 lines
330 B
C
22 lines
330 B
C
|
#ifndef __SNTP_H__
|
||
|
#define __SNTP_H__
|
||
|
|
||
|
#include <time.h>
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
extern "C" {
|
||
|
#endif
|
||
|
|
||
|
void sntp_init(void);
|
||
|
void sntp_stop(void);
|
||
|
|
||
|
/* Realtek added */
|
||
|
void sntp_get_lasttime(long *sec, long *usec, unsigned int *tick);
|
||
|
struct tm sntp_gen_system_time(int timezone);
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
}
|
||
|
#endif
|
||
|
|
||
|
#endif /* __SNTP_H__ */
|