Windows2003-3790/sdktools/restools/rltools/common/commbase.h
2020-09-30 16:53:55 +02:00

16 lines
296 B
C

#ifndef _COMMBASE_H_
#define _COMMBASE_H_
void StripNewLineA( LPSTR sz);
void StripNewLineW( LPWSTR sz);
#ifdef UNICODE
#define StripNewLine StripNewLineW
#else
#define StripNewLine StripNewLineA
#endif
void SzDateFromFileName( char *sz, char *szFile);
#endif // _COMMBASE_H_