Always use wide characters.
This commit is contained in:
parent
d239b1669b
commit
003ac6cca4
18 changed files with 546 additions and 588 deletions
18
commands.h
18
commands.h
|
|
@ -16,18 +16,18 @@
|
|||
#include "wide.h"
|
||||
|
||||
typedef struct command {
|
||||
const WCHAR *cm_name;
|
||||
void (*cm_hdl) (size_t, WCHAR **);
|
||||
const wchar_t *cm_name;
|
||||
void (*cm_hdl) (size_t, wchar_t **);
|
||||
} command_t;
|
||||
|
||||
command_t *find_command(const WCHAR *);
|
||||
command_t *find_command(const wchar_t *);
|
||||
|
||||
void c_bind (size_t, WCHAR **);
|
||||
void c_style (size_t, WCHAR **);
|
||||
void c_set (size_t, WCHAR **);
|
||||
void c_macro (size_t, WCHAR **);
|
||||
void c_bind (size_t, wchar_t **);
|
||||
void c_style (size_t, wchar_t **);
|
||||
void c_set (size_t, wchar_t **);
|
||||
void c_macro (size_t, wchar_t **);
|
||||
|
||||
void cmderr (const WCHAR *, ...);
|
||||
void vcmderr (const WCHAR *, va_list);
|
||||
void cmderr (const wchar_t *, ...);
|
||||
void vcmderr (const wchar_t *, va_list);
|
||||
|
||||
#endif /* !TTS_COMMANDS_H */
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue