Source code of Windows XP (NT5)
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.

39 lines
864 B

  1. /*-------------------------------------------------------------------------
  2. timeconv.h
  3. Function prototypes for time conversion functions.
  4. Copyright (C) 1994 Microsoft Corporation.
  5. Author
  6. Lindsay Harris - lindsayh
  7. History
  8. 14:08 on Wed 20 Apr 1994 -by- Lindsay Harris [lindsayh]
  9. First version, now that there are 2 time functions!
  10. --------------------------------------------------------------------------*/
  11. #if !defined( _TIMECONV_H )
  12. #define _TIMECONV_H
  13. const DWORD cMaxArpaDate = 28;
  14. /*
  15. * Generate an ARPA/Internet time format string for current time.
  16. * You must pass in a buffer of type char [cMaxArpaDate]
  17. */
  18. char *
  19. GetArpaDate( char rgBuf[ cMaxArpaDate ] );
  20. //
  21. // 12/21/98 -- pgopi
  22. // Get System time & file time in string format.
  23. //
  24. void GetSysAndFileTimeAsString( char *achReturn );
  25. #endif // _TIMECONV_H