00001 #ifndef __LINUXBASIC_CALLBACK_H_
00002 #define __LINUXBASIC_CALLBACK_H_
00003
00004 typedef void (*linuxbasic_cb_t)(void* Basic, const char* TopoDump);
00005
00006 typedef struct _linuxbasic_cb {
00007
00008 void* Basic;
00009 linuxbasic_cb_t Func;
00010 } linuxbasic_cb;
00011
00012 #endif