comparison inkscape/firefox/template/textmenu/app.c @ 371:3d21115297ba

Add textmenu template
author wycc
date Tue, 17 Mar 2009 08:31:04 +0800
parents
children 7d244a85dd68
comparison
equal deleted inserted replaced
370:fce37d9c296f 371:3d21115297ba
1 #include <stdio.h>
2 #include <mb.h>
3 #include "mbapp.h"
4 #include "animated_menu.h"
5 #include "app.h"
6
7 void myselect_callback(mb_animated_menu_t *m, int select)
8 {
9 printf("menu %d is selected\n", select);
10 // Put the callback function for menu select here
11 }
12
13 void MyApp_InitContent(MBApp *app,int argc,char *argv[])
14 {
15 // This function is called when the application is started.
16 }