Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Dunbar <daniel@zuster.org>2004-05-04 23:40:11 +0400
committerDaniel Dunbar <daniel@zuster.org>2004-05-04 23:40:11 +0400
commit993a438b3f57da1422e99cd60aeea8d655c4a67d (patch)
treeb82c758174fb25b3163be6c2b1d772f4472a0bc2 /source/blender
parent14a46b70d39c50adda0f576f7af695510aa2779f (diff)
- change to non-typedef'ng method of declaring BCursor in winlay.h
(OSX doesn't like)
Diffstat (limited to 'source/blender')
-rw-r--r--source/blender/src/winlay.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/source/blender/src/winlay.h b/source/blender/src/winlay.h
index b30e7955dc8..7427f06e9ff 100644
--- a/source/blender/src/winlay.h
+++ b/source/blender/src/winlay.h
@@ -32,8 +32,9 @@
/* Abstract window operations */
+struct BCursor;
+
typedef struct _Window Window;
-typedef struct BCursor BCursor;
typedef void (*WindowHandlerFP) (Window *win, void *user_data, short evt, short val, char ascii);
Window* window_open (char *title, int x, int y, int width, int height, int start_maximized);
@@ -67,7 +68,7 @@ void window_set_title (Window *win, char *title);
void window_set_cursor (Window *win, int cursor);
void window_set_custom_cursor (Window *win, unsigned char mask[16][2],
unsigned char bitmap[16][2], int hotx, int hoty );
-void window_set_custom_cursor_ex (Window *win, BCursor *cursor, int useBig);
+void window_set_custom_cursor_ex (Window *win, struct BCursor *cursor, int useBig);
void window_warp_pointer (Window *win, int x, int y);