1 #ifndef CLIB_BATTCLOCK_PROTOS_H 2 #define CLIB_BATTCLOCK_PROTOS_H 3 4 /* 5 battclock.resource C prototypes 6 7 Copyright © 2018 The MorphOS Development Team, All Rights Reserved. 8 */ 9 10 #ifndef EXEC_TYPES_H 11 # include <exec/types.h> 12 #endif 13 14 15 #ifdef __cplusplus 16 extern "C" { 17 #endif /* __cplusplus */ 18 19 VOID ResetBattClock( VOID ); 20 ULONG ReadBattClock( VOID ); 21 VOID WriteBattClock( ULONG time ); 22 ULONG ReadUTCBattClock( VOID ); 23 VOID WriteUTCBattClock( ULONG time ); 24 25 #ifdef __cplusplus 26 } 27 #endif /* __cplusplus */ 28 29 30 #endif /* CLIB_BATTCLOCK_PROTOS_H */