Subversion Repositories filter_foundry

Rev

Rev 536 | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 536 Rev 559
Line 22... Line 22...
22
#endif
22
#endif
23
 
23
 
24
#ifndef STR_H_
24
#ifndef STR_H_
25
#define STR_H_
25
#define STR_H_
26
 
26
 
27
#ifdef MAC_ENV
27
#ifndef WIN_ENV
28
#ifdef UNICODE
28
#ifdef UNICODE
29
#define TCHAR wchar_t
29
//#define TCHAR wchar_t
-
 
30
typedef wchar_t TCHAR;
30
#else
31
#else
31
#define TCHAR char
32
//#define TCHAR char
-
 
33
typedef char TCHAR;
32
#endif
34
#endif
33
#endif
35
#endif
34
 
36
 
35
void strcpy_advance(TCHAR** str, TCHAR* append);
37
void strcpy_advance(TCHAR** str, TCHAR* append);
36
void strcpy_advance_a(TCHAR** str, char* append);
38
void strcpy_advance_a(TCHAR** str, char* append);