Always use wide characters.

This commit is contained in:
Felicity Tarnell 2014-03-08 00:30:40 +00:00
parent d239b1669b
commit 003ac6cca4
18 changed files with 546 additions and 588 deletions

View file

@ -14,7 +14,7 @@
#include "wide.h"
typedef struct variable {
WCHAR const *va_name;
wchar_t const *va_name;
int va_type;
void *va_addr;
} variable_t;
@ -23,6 +23,6 @@ typedef struct variable {
#define VTYPE_BOOL 2
#define VTYPE_STRING 3
variable_t *find_variable(const WCHAR *name);
variable_t *find_variable(const wchar_t *name);
#endif /* !TTS_VARIABLE_H */