11 Mar
2011
11 Mar
'11
3:01 p.m.
Erich Hoover <ehoover(a)mines.edu> writes:
@@ -135,6 +139,16 @@ static void release_icon_ptr( HICON handle, struct cursoricon_object *ptr ) release_user_handle_ptr( ptr ); }
+struct static_cursoricon_object *get_icon_data( struct cursoricon_object *obj, int istep ) +{ + return &obj->frames[istep]; +} + +void release_icon_data( struct cursoricon_object *obj, int istep, struct static_cursoricon_object *icon_data ) +{ + /* placeholder */ +}
I find your data structures confusing. You add a concept of icon_data separate from icon_ptr, but it doesn't correspond to the data structures, there's no such thing as an icon_data. There should be a way of making this clearer. -- Alexandre Julliard julliard(a)winehq.org