mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-09-02 04:13:34 +00:00
[SHDOCVW][EXPLORER][RSHELL][SDK] Populate WinList_* stubs (#7691)
Implementing missing features... JIRA issue: CORE-9368 - Modify shdocvw.spec. - Add dll/win32/shdocvw/winlist.cpp. - Add stubs of WinList_* functions. - Add WinList_* function prototypes to <shdocvw_undoc.h>. - Adapt explorer and rshell to new WinList_Init prototype.
This commit is contained in:
@@ -105,9 +105,9 @@ BOOL WINAPI _SHDesktopMessageLoop(HANDLE hDesktop)
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
typedef DWORD(WINAPI* PWINLIST_INIT)(void);
|
||||
typedef BOOL (WINAPI *PWINLIST_INIT)(void);
|
||||
|
||||
DWORD WINAPI _WinList_Init(void)
|
||||
BOOL WINAPI _WinList_Init(void)
|
||||
{
|
||||
HINSTANCE hFallback;
|
||||
|
||||
@@ -131,7 +131,7 @@ DWORD WINAPI _WinList_Init(void)
|
||||
}
|
||||
}
|
||||
|
||||
return 0;
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
typedef void (WINAPI *PSHELLDDEINIT)(BOOL bInit);
|
||||
|
||||
Reference in New Issue
Block a user