windows-nt/Source/XPSP1/NT/sdktools/restools/rltools/common/commbase.h

16 lines
281 B
C
Raw Normal View History

2020-09-26 03:20:57 -05: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_