remove unneeded stuff

This commit is contained in:
Akash Mozumdar 2018-07-21 15:30:42 -07:00
parent 4543a86e48
commit fd82471303
2 changed files with 3 additions and 5 deletions

View File

@ -19,8 +19,8 @@ struct ProcessRecord
HANDLE hostPipe; HANDLE hostPipe;
}; };
typedef void(__stdcall *ProcessEventCallback)(DWORD pid); typedef void(*ProcessEventCallback)(DWORD pid);
typedef void(__stdcall *ThreadEventCallback)(TextThread*); typedef void(*ThreadEventCallback)(TextThread*);
struct ThreadParameterHasher struct ThreadParameterHasher
{ {

View File

@ -22,10 +22,8 @@ struct ThreadParameter
} }
}; };
#define CURRENT_SELECT 0x1000
class TextThread; class TextThread;
typedef std::wstring(__stdcall *ThreadOutputCallback)(TextThread*, std::wstring data); typedef std::wstring(*ThreadOutputCallback)(TextThread*, std::wstring data);
//extern DWORD split_time,repeat_count,global_filter,cyclic_remove; //extern DWORD split_time,repeat_count,global_filter,cyclic_remove;