Skip to content

Instantly share code, notes, and snippets.

@lesstif
Created October 7, 2020 09:44
Show Gist options
  • Save lesstif/d27c4de98202c8330614646d46a55148 to your computer and use it in GitHub Desktop.
Save lesstif/d27c4de98202c8330614646d46a55148 to your computer and use it in GitHub Desktop.
windows 95가 버전 3.95인 이유 - 윈도우 개발 282 스토리에서 발췌
UINT Ver = GetVersion();
UINT MajorVersion = LOBYTE(uVer);
UINT MinorVersion = HIBYTE(uVer);
if (MajorVersion < 3 || MinorVersion < 10) {
Error("This program requires Windows 3.1");
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment