Mercurial > MadButterfly
view include/mbapp.h @ 399:31b6633e3538
- Fix a minor error in src/sprite.c: should check *(s-1) instead of
*s or the pointer will stop at '/', which is not what we want.
- Fix various load path errors in examples because libtool put .so
into .libs directory.
- Fix an error in examples/dynamic/Makefile.am: scene_la_SOURCES
should be scene.c instead of mytext.c
author | john.cylee@gmail.com |
---|---|
date | Fri, 12 Jun 2009 18:36:15 +0800 |
parents | 2e97e8082d83 |
children | 84ce2d4a8c3f |
line wrap: on
line source
#ifndef __APP_H #define __APP_H typedef struct _mbapp MBApp; struct _mbapp { void *rt; redraw_man_t *rdman; mb_sprite_t *rootsprite; mb_obj_t *root; subject_t *kbevents; void *private; }; MBApp *MBApp_Init(char *module); void MBApp_setData(MBApp *app,void *data); mb_tman_t *MBApp_getTimer(MBApp *app); void MBApp_loop(MBApp *en); #define MBAPP_DATA(app,type) ((type *) ((app)->private)) #define MBAPP_RDMAN(app) (((MBApp *) app)->rdman) #define MBAPP_keySubject(app) ((app)->kbevents) #include "mbbutton.h" #endif