mirror of
https://github.com/reactos/reactos.git
synced 2024-11-07 07:00:19 +00:00
ddb3d908c9
svn path=/branches/shell-experiments/; revision=62286
124 lines
2.5 KiB
C
124 lines
2.5 KiB
C
#ifndef _TIMEDATE_H
|
|
#define _TIMEDATE_H
|
|
|
|
#include <stdarg.h>
|
|
|
|
#define _INC_WINDOWS
|
|
#define COM_NO_WINDOWS_H
|
|
#define WIN32_NO_STATUS
|
|
|
|
#include <windef.h>
|
|
#include <winbase.h>
|
|
#include <winnls.h>
|
|
#include <winreg.h>
|
|
#include <wingdi.h>
|
|
#include <winuser.h>
|
|
#include <wchar.h>
|
|
#include <commctrl.h>
|
|
#include <cpl.h>
|
|
|
|
#include "resource.h"
|
|
|
|
#define MAX_KEY_LENGTH 255
|
|
#define MAX_VALUE_NAME 16383
|
|
#define SERVERLISTSIZE 6
|
|
#define BUFSIZE 1024
|
|
#define NTPPORT 123
|
|
#define ID_TIMER 1
|
|
|
|
typedef struct
|
|
{
|
|
UINT idIcon;
|
|
UINT idName;
|
|
UINT idDescription;
|
|
APPLET_PROC AppletProc;
|
|
} APPLET, *PAPPLET;
|
|
|
|
extern HINSTANCE hApplet;
|
|
|
|
|
|
/* dateandtime.c */
|
|
INT_PTR CALLBACK DateTimePageProc(HWND hwndDlg, UINT uMsg, WPARAM wParam, LPARAM lParam);
|
|
BOOL SystemSetLocalTime(LPSYSTEMTIME lpSystemTime);
|
|
|
|
|
|
/* timezone.c */
|
|
INT_PTR CALLBACK TimeZonePageProc(HWND hwndDlg, UINT uMsg, WPARAM wParam, LPARAM lParam);
|
|
|
|
|
|
/* internettime.c */
|
|
INT_PTR CALLBACK InetTimePageProc(HWND hwndDlg, UINT uMsg, WPARAM wParam, LPARAM lParam);
|
|
|
|
|
|
/* timedate.c */
|
|
#if DBG
|
|
VOID DisplayWin32ErrorDbg(DWORD dwErrorCode, const char *file, int line);
|
|
#define DisplayWin32Error(e) DisplayWin32ErrorDbg(e, __FILE__, __LINE__);
|
|
#else
|
|
VOID DisplayWin32Error(DWORD dwErrorCode);
|
|
#endif
|
|
|
|
|
|
/* clock.c */
|
|
#define CLM_STOPCLOCK (WM_USER + 1)
|
|
#define CLM_STARTCLOCK (WM_USER + 2)
|
|
|
|
BOOL RegisterClockControl(VOID);
|
|
VOID UnregisterClockControl(VOID);
|
|
|
|
|
|
/* ntpclient.c */
|
|
// NTP timestamp
|
|
typedef struct _TIMEPACKET
|
|
{
|
|
DWORD dwInteger;
|
|
DWORD dwFractional;
|
|
} TIMEPACKET, *PTIMEPACKET;
|
|
|
|
// NTP packet
|
|
typedef struct _NTPPACKET
|
|
{
|
|
BYTE LiVnMode;
|
|
BYTE Stratum;
|
|
char Poll;
|
|
char Precision;
|
|
long RootDelay;
|
|
long RootDispersion;
|
|
char ReferenceID[4];
|
|
TIMEPACKET ReferenceTimestamp;
|
|
TIMEPACKET OriginateTimestamp;
|
|
TIMEPACKET ReceiveTimestamp;
|
|
TIMEPACKET TransmitTimestamp;
|
|
}NTPPACKET, *PNTPPACKET;
|
|
|
|
ULONG GetServerTime(LPWSTR lpAddress);
|
|
|
|
|
|
/* monthcal.c */
|
|
#define MCCM_SETDATE (WM_USER + 1)
|
|
#define MCCM_GETDATE (WM_USER + 2)
|
|
#define MCCM_RESET (WM_USER + 3)
|
|
#define MCCM_CHANGED (WM_USER + 4)
|
|
|
|
#define MCCN_SELCHANGE (1)
|
|
typedef struct _NMMCCSELCHANGE
|
|
{
|
|
NMHDR hdr;
|
|
WORD OldDay;
|
|
WORD OldMonth;
|
|
WORD OldYear;
|
|
WORD NewDay;
|
|
WORD NewMonth;
|
|
WORD NewYear;
|
|
} NMMCCSELCHANGE, *PNMMCCSELCHANGE;
|
|
#define MCCN_AUTOUPDATE (2)
|
|
typedef struct _NMMCCAUTOUPDATE
|
|
{
|
|
NMHDR hdr;
|
|
SYSTEMTIME SystemTime;
|
|
} NMMCCAUTOUPDATE, *PNMMCCAUTOUPDATE;
|
|
|
|
BOOL RegisterMonthCalControl(IN HINSTANCE hInstance);
|
|
VOID UnregisterMonthCalControl(IN HINSTANCE hInstance);
|
|
|
|
#endif /* _TIMEDATE_H */
|