FreeBASIC  0.91.0
fb_oop.h
Go to the documentation of this file.
1 typedef struct _FB_RTTI {
2  void *stdlistVT;
3  const char *id;
4  struct _FB_RTTI *pRTTIBase;
5 } FB_RTTI;
6 
7 typedef struct _FB_BASEVT {
8  void *nullPtr;
10 } FB_BASEVT;
11 
12 typedef struct _FB_OBJECT {
14 } FB_OBJECT;
15 
16 /* Object class constructor */
17 void _ZN10$fb_ObjectC1Ev( FB_OBJECT* );