Lines Matching refs:recorder
29 CFile *recorder; variable
977 if (recorder) in OnClose()
1288 recorder->Write(&input, sizeof(INPUT)); in MouseHook()
1307 recorder->Write(&input, sizeof(INPUT)); in MouseHook()
1352 recorder->Write(&input, sizeof(INPUT)); in KeybdHook()
1560 recorder = new CFile(); in OnRecordmacro()
1562 if(recorder == NULL) in OnRecordmacro()
1567 if(recorder->Open(macro_name.GetBuffer(), CFile::modeCreate | CFile::modeWrite)) in OnRecordmacro()
1599 recorder->Write(MACRO_FILE_FLAG, sizeof(MACRO_FILE_FLAG)); in OnRecordmacro()
1621 recorder->Write(&info, sizeof(MACRO_HEAD_INFO)); in OnRecordmacro()
1624 … recorder->Write((int *)proj_tree_state.GetData(), sizeof(int) * proj_tree_state.GetCount()); in OnRecordmacro()
1760 if(recorder) in OnEndmacro()
1762 recorder->Close(); in OnEndmacro()
1764 delete recorder; in OnEndmacro()
1765 recorder = NULL; in OnEndmacro()
1771 if (macro_play_thread || recorder) in IsTestMode()