(svn r1827) Next iteration of the byte -> char transition: some string drawing functions and buffers

This commit is contained in:
tron
2005-02-06 18:30:45 +00:00
parent eb28e8b322
commit 2fb453a4a5
15 changed files with 34 additions and 32 deletions

View File

@@ -91,7 +91,7 @@ union WindowEvent {
struct {
byte event;
byte *str;
char *str;
} edittext;
struct {
@@ -228,7 +228,7 @@ typedef struct {
WindowClass wnd_class;
WindowNumber wnd_num;
uint16 maxlen, maxwidth;
byte *buf;
char *buf;
} querystr_d;
#define WP(ptr,str) (*(str*)(ptr)->custom)