예제 #1
0
파일: wxluafreeze.cpp 프로젝트: 1nv1/wxlua
void wxLuaFreezeApp::OnLua(wxLuaEvent &event)
{
    OutputPrint(event.GetString());

    //if (event.GetEventType() == wxEVT_LUA_PRINT)
    //else if (event.GetEventType() == wxEVT_LUA_ERROR)
}
예제 #2
0
파일: handlr.cpp 프로젝트: fur-q/handlr
void HandlrApp::OnLuaPrint(wxLuaEvent &event) {
    wxLogMessage(event.GetString());
}
예제 #3
0
파일: handlr.cpp 프로젝트: fur-q/handlr
void HandlrApp::OnLuaError(wxLuaEvent &event) {
    OutputPrint(event.GetString());
}