static bool checkError(OS * os, int err_code) { if(err_code != SQLITE_OK){ if(!os->isExceptionSet()){ triggerError(os, err_code); } return true; } return false; // os->isExceptionSet(); }
static int __construct(OS * os, int params, int, int, void*) { triggerError(os, OS_TEXT("you should not create new instance of OpenglCache")); return 0; }