From 993a438b3f57da1422e99cd60aeea8d655c4a67d Mon Sep 17 00:00:00 2001 From: Daniel Dunbar Date: Tue, 4 May 2004 19:40:11 +0000 Subject: [PATCH] - change to non-typedef'ng method of declaring BCursor in winlay.h (OSX doesn't like) --- source/blender/src/winlay.h | 5 +++-- 1 file 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);