1234567891011121314151617181920212223242526272829 |
- #ifndef NULLSOFT_UPDATETIMEH
- #define NULLSOFT_UPDATETIMEH
- #include <time.h>
- namespace Update
- {
- enum
- {
- TIME_MANUALLY = 0,
- TIME_WEEKLY,
- TIME_DAILY,
- TIME_HOURLY,
- TIME_NUMENTRIES
- };
- extern __time64_t times[];
-
- const wchar_t *GetTitle(int position, wchar_t *buffer, int bufferMax);
- bool GetAutoUpdate(int selection);
- __time64_t GetTime(int selection);
- int GetSelection(__time64_t selTime, bool autoUpdate);
- }
- #endif
|