Windows2003-3790/sdktools/restools/rltools/common/commbase.h

16 lines
296 B
C
Raw Normal View History

2001-01-01 00:00:00 +01:00
#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_