예제 #1
0
파일: ZLib.cpp 프로젝트: delahee/hxlibc
extern "C" int zlib_register_prims()
{
   static bool init = false;
   if (init) return 0;
   init = true;

   zlib_main();
   return 0;
}
예제 #2
0
파일: xcross.c 프로젝트: 0b1kn00b/xcross
void neko_standalone_init() {
#	ifndef CONSOLE_MODE
	sys_init();
	ui_main();
#	endif
	std_main();
	regexp_main();
	zlib_main();
}