From f9f8440a3a406690b82898f7381dc7162887b9c1 Mon Sep 17 00:00:00 2001 From: itsmattkc Date: Mon, 19 Jun 2023 01:21:51 -0700 Subject: [PATCH] main: elaborate new info about LoadAccelerators call [skip ci] --- ISLE/main.cpp | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/ISLE/main.cpp b/ISLE/main.cpp index 4b27d8e3..6e4c6621 100644 --- a/ISLE/main.cpp +++ b/ISLE/main.cpp @@ -71,7 +71,12 @@ int WINAPI WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR lpCmdLine window = g_isle->m_windowHandle; } - // Load accelerator (this call actually achieves nothing - there is no "AppAccel" resource in the original - but we'll keep this for authenticity) + // Load accelerators (this call actually achieves nothing - there is no "AppAccel" resource in the original - but we'll keep this for authenticity) + // This line may actually be here because it's in DFVIEW, an example project that ships with + // MSVC420, and was such a clean example of a Win32 app, that it was later adapted + // into an "ExeSkeleton" sample for MSVC600. It's quite possible Mindscape derived + // this app from that example since they no longer had the luxury of the + // MFC AppWizard which we know they used for the frontend used during development (ISLEMFC.EXE, MAIN.EXE, et al.) LoadAcceleratorsA(hInstance, "AppAccel"); MSG msg;