コード例 #1
0
ファイル: animation.cpp プロジェクト: UIKit0/paragui
bool exit_handler(PG_Pointer clientdata) {

	// we can pass in some pointer to any userdata
	// (in this case we get a pointer to the application object)
	PG_Application* app = (PG_Application*) clientdata;

	// exit the application eventloop
	app->Quit();

	// return true to signal that we have processed this message
	return true;
}
コード例 #2
0
ファイル: widgetlistbug.cpp プロジェクト: UIKit0/paragui
bool exit_handler(PG_Pointer clientdata) {
    PG_Application* app = (PG_Application*) clientdata;
    app->Quit();
    return true;
}