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.

15 lines
296 B

  1. #ifndef _COMMBASE_H_
  2. #define _COMMBASE_H_
  3. void StripNewLineA( LPSTR sz);
  4. void StripNewLineW( LPWSTR sz);
  5. #ifdef UNICODE
  6. #define StripNewLine StripNewLineW
  7. #else
  8. #define StripNewLine StripNewLineA
  9. #endif
  10. void SzDateFromFileName( char *sz, char *szFile);
  11. #endif // _COMMBASE_H_