You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
378 B
24 lines
378 B
#ifndef _GLOBAL_H_
|
|
#define _GLOBAL_H_
|
|
|
|
#include <inetsvcs.h>
|
|
|
|
DWORD
|
|
WeekOfMonth(
|
|
IN LPSYSTEMTIME pstNow
|
|
);
|
|
|
|
BOOL IsBeginningOfNewPeriod(
|
|
IN DWORD dwPeriod,
|
|
IN LPSYSTEMTIME pstCurrentFile,
|
|
IN LPSYSTEMTIME pstNow
|
|
);
|
|
|
|
VOID
|
|
ConvertSpacesToPlus(
|
|
IN LPSTR pszString
|
|
);
|
|
|
|
extern LPEVENT_LOG g_eventLog;
|
|
|
|
#endif
|