Counter Strike : Global Offensive Source Code
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

21 lines
536 B

#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