2025-06-04 03:22:50 +02:00

21 lines
516 B
Plaintext
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

#include "windows.h"
#include "fkeys.h"
FKeysMenu MENU
BEGIN
POPUP "&Help"
BEGIN
MENUITEM "&About FKeys...", IDM_ABOUT
END
END
AboutBox DIALOG 22, 17, 144, 75
STYLE DS_MODALFRAME | WS_CAPTION | WS_SYSMENU
CAPTION "About FKeys"
BEGIN
CTEXT "Microsoft Windows" -1, 0, 5, 144, 8
CTEXT "FKeys Application" -1, 0, 14, 144, 8
CTEXT "Version 3.0" -1, 0, 34, 144, 8
DEFPUSHBUTTON "OK" IDOK, 53, 59, 32, 14, WS_GROUP
END