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
15 lines
296 B
#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_
|