Fix missing terminator of DLL import array

This commit is contained in:
David Hrdlička
2022-01-09 20:01:59 +01:00
parent d790ed5894
commit 3323f26a1f

View File

@@ -97,7 +97,8 @@ static dllimp_t user32_imports[] = {
void* shell32_handle = NULL; void* shell32_handle = NULL;
static HRESULT (WINAPI *pSetCurrentProcessExplicitAppUserModelID)(PCWSTR AppID); static HRESULT (WINAPI *pSetCurrentProcessExplicitAppUserModelID)(PCWSTR AppID);
static dllimp_t shell32_imports[]= { static dllimp_t shell32_imports[]= {
{ "SetCurrentProcessExplicitAppUserModelID", &pSetCurrentProcessExplicitAppUserModelID } { "SetCurrentProcessExplicitAppUserModelID", &pSetCurrentProcessExplicitAppUserModelID },
{ NULL, NULL }
}; };
int int