00001 /*header file for src/init.cpp*/ 00002 00003 #ifndef _CORE_INIT_HPP 00004 #define _CORE_INIT_HPP 00005 00006 /*static object initialisation*/ 00007 void init_class() asm ("__init_class"); 00008 void done_class() asm ("__done_class"); 00009 00010 /*other inits*/ 00011 void pre_init() asm ("__pre_init"); 00012 void post_done() asm ("__post_done"); 00013 00014 #endif