Leaked source code of windows server 2003
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

  1. #ifndef _GLOBAL_H_
  2. #define _GLOBAL_H_
  3. #include <inetsvcs.h>
  4. DWORD
  5. WeekOfMonth(
  6. IN LPSYSTEMTIME pstNow
  7. );
  8. BOOL IsBeginningOfNewPeriod(
  9. IN DWORD dwPeriod,
  10. IN LPSYSTEMTIME pstCurrentFile,
  11. IN LPSYSTEMTIME pstNow
  12. );
  13. VOID
  14. ConvertSpacesToPlus(
  15. IN LPSTR pszString
  16. );
  17. extern LPEVENT_LOG g_eventLog;
  18. #endif