Subversion Repositories filter_foundry

Compare Revisions

Regard whitespace Rev 546 → Rev 559

/trunk/telegraphics_common/adobeplugin/world.h
35,6 → 35,19
typedef long intptr_t;
#endif
 
#ifndef WIN_ENV
#ifdef UNICODE
typedef wchar_t TCHAR;
#else
typedef char TCHAR;
#endif
#endif
 
#ifndef WIN_ENV
// ???
#define MAX_PATH 255
#endif
 
#include "dbg.h"
#include "str.h"
 
120,12 → 133,4
#define snprintf _snprintf
#endif /* _MSC_VER */
 
#ifndef WIN_ENV
#ifdef UNICODE
typedef wchar_t TCHAR;
#else
typedef char TCHAR;
#endif
#endif
 
#endif
/trunk/telegraphics_common/tt/str.h
24,11 → 24,13
#ifndef STR_H_
#define STR_H_
 
#ifdef MAC_ENV
#ifndef WIN_ENV
#ifdef UNICODE
#define TCHAR wchar_t
//#define TCHAR wchar_t
typedef wchar_t TCHAR;
#else
#define TCHAR char
//#define TCHAR char
typedef char TCHAR;
#endif
#endif