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.

20 lines
536 B

  1. #include "windows.h"
  2. #include "fkeys.h"
  3. FKeysMenu MENU
  4. BEGIN
  5. POPUP "&Help"
  6. BEGIN
  7. MENUITEM "&About FKeys...", IDM_ABOUT
  8. END
  9. END
  10. AboutBox DIALOG 22, 17, 144, 75
  11. STYLE DS_MODALFRAME | WS_CAPTION | WS_SYSMENU
  12. CAPTION "About FKeys"
  13. BEGIN
  14. CTEXT "Microsoft Windows" -1, 0, 5, 144, 8
  15. CTEXT "FKeys Application" -1, 0, 14, 144, 8
  16. CTEXT "Version 3.0" -1, 0, 34, 144, 8
  17. DEFPUSHBUTTON "OK" IDOK, 53, 59, 32, 14, WS_GROUP
  18. END
  19.