1
0
Fork 0

patch list in separate thread

This commit is contained in:
Mr. eXoDia 2014-07-06 04:11:50 +02:00
parent 460489189c
commit 8bef2cef39
1 changed files with 7 additions and 1 deletions

View File

@ -990,9 +990,15 @@ BRIDGE_IMPEXP void GuiRepaintTableView()
_gui_sendmessage(GUI_REPAINT_TABLE_VIEW, 0, 0);
}
BRIDGE_IMPEXP void GuiUpdatePatches()
static DWORD WINAPI updatePatchesThread(void* a)
{
_gui_sendmessage(GUI_UPDATE_PATCHES, 0, 0);
return 0;
}
BRIDGE_IMPEXP void GuiUpdatePatches()
{
CloseHandle(CreateThread(0, 0, updatePatchesThread, 0, 0, 0));
}
//Main