view include/mbapp.h @ 335:01038b8d8f05

Set the progm to be NULL so that we won't call mb_progm_abort when we call it at the next time. This will fix the crash issue of the dynamic. However, the dynamic is still crash sometimes if we click the button quickly. It looks like it crashes in the refresh. We need to future figure out the issue.
author wycc
date Sat, 07 Mar 2009 14:24:55 +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