+fix: _beginthreadex_proc_type correction for Win32(x86)

This commit is contained in:
METANEOCORTEX\Kotti 2023-03-16 00:55:11 +01:00
parent ff95c43c2a
commit a5dca9db14
3 changed files with 3 additions and 3 deletions

View File

@ -2163,7 +2163,7 @@ bool AddToFavDlg(HWND hwnd, const HPATHL hTargetPth)
// FileMRUDlgProc()
//
//
unsigned int WINAPIV FileMRUIconThread(LPVOID lpParam)
unsigned int WINAPI FileMRUIconThread(LPVOID lpParam)
{
BackgroundWorker *worker = (BackgroundWorker *)lpParam;

View File

@ -334,7 +334,7 @@ int DirList_Fill(HWND hwnd,LPCWSTR lpszDir,DWORD grfFlags,LPCWSTR lpszFileSpec,
//
// Thread to extract file icons in the background
//
unsigned int WINAPIV DirList_IconThread(LPVOID lpParam)
unsigned int WINAPI DirList_IconThread(LPVOID lpParam)
{
LPDLDATA lpdl = (LPDLDATA)lpParam;
BackgroundWorker *worker = &lpdl->worker;

View File

@ -12565,7 +12565,7 @@ static void CALLBACK WatchTimerProc(HWND hwnd, UINT uMsg, UINT_PTR idEvent, DWOR
// ----------------------------------------------------------------------------
unsigned int WINAPIV FileChangeObserver(LPVOID lpParam)
unsigned int WINAPI FileChangeObserver(LPVOID lpParam)
{
PFCOBSRVDATA_T const pFCOBSVData = (PFCOBSRVDATA_T)(LONG_PTR)lpParam;