(svn r6955) -Codechange: Change some variable names for _textmessage_box, and replace 5 different

global variables with a single struct.
This commit is contained in:
Darkvater
2006-10-27 10:27:38 +00:00
parent f49372feaa
commit 7a3fb176db
2 changed files with 40 additions and 41 deletions

View File

@@ -12,6 +12,11 @@ typedef struct Rect {
int left,top,right,bottom;
} Rect;
typedef struct Oblong {
int x, y;
int width, height;
} Oblong;
typedef struct BoundingRect {
int width;
int height;