windows-nt/Source/XPSP1/NT/sdktools/restools/rltools/common/commbase.h
2020-09-26 16:20:57 +08:00

16 lines
281 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_