|
|
1.1 root 1: // ************************************************************************
2: //
3: // Microsoft Developer Support
4: // Copyright (c) 1993 Microsoft Corporation
5: //
6: // ************************************************************************
7: // RESOURCE : MinRec.RC
8: // PURPOSE : A Small Win32 Recorder-like Sample Application Resource
9: // Script
10: // ************************************************************************
11: #include <Windows.H>
12: #include "MinRec.H"
13:
14:
15: // Miscellaneous Included Resources
16: // ------------------------------------------------------------------------
17: #include "MinRec.Dlg"
18:
19: MinRecIcon ICON MinRec.Ico
20:
21:
22: // Menus
23: // ------------------------------------------------------------------------
24: MinRecMenu MENU
25: BEGIN
26:
27: POPUP "&File"
28: BEGIN
29: MENUITEM "E&xit\tAlt+F4", IDM_FILE_EXIT
30: END
31:
32: POPUP "&Macro"
33: BEGIN
34: MENUITEM "&Playback\tCtrl+P", IDM_MACRO_PLAYBACK
35: MENUITEM "&Record\tCtrl+R", IDM_MACRO_RECORD
36: MENUITEM "&Stop\tCtrl+Break", IDM_MACRO_STOP
37: END
38:
39: POPUP "&Help"
40: BEGIN
41: MENUITEM "&About Minimum Recorder...", IDM_HELP_ABOUT
42: END
43:
44: END
45:
46:
47: // Accelerator Tables
48: // ------------------------------------------------------------------------
49: MinRecAccel ACCELERATORS
50: BEGIN
51: VK_F4, IDM_FILE_EXIT, VIRTKEY, ALT
52: "P", IDM_MACRO_PLAYBACK, VIRTKEY, CONTROL
53: "R", IDM_MACRO_RECORD, VIRTKEY, CONTROL
54: "S", IDM_MACRO_STOP, VIRTKEY, CONTROL
55: VK_CANCEL, IDM_MACRO_STOP, VIRTKEY, CONTROL
56: VK_F1, IDM_HELP_ABOUT, VIRTKEY
57: END
58:
59:
60: // Version Information
61: // ------------------------------------------------------------------------
62: #include <winver.h>
63:
64: VS_VERSION_INFO VERSIONINFO
65: FILEVERSION 1,0
66: PRODUCTVERSION 1,0
67: FILEFLAGSMASK VS_FFI_FILEFLAGSMASK
68: #ifdef DEBUG
69: FILEFLAGS (VS_FF_PRERELEASE|VS_FF_DEBUG)
70: #else
71: FILEFLAGS (VS_FF_PRERELEASE)
72: #endif
73: FILEOS VOS_NT_WINDOWS32
74: FILETYPE VFT_APP
75: FILESUBTYPE VFT2_UNKNOWN
76: BEGIN
77: BLOCK "StringFileInfo"
78: BEGIN
79: // U.S. English - Windows, Multilingual
80: BLOCK "040904E4"
81: BEGIN
82: VALUE "Comments", "This is just a sample application."
83: VALUE "CompanyName", "Microsoft Corporation\0"
84: VALUE "FileDescription", "MinRec Sample Windows Application\0"
85: VALUE "FileVersion", "1.0\0"
86: VALUE "InternalName", "MinRec\0"
87: VALUE "LegalCopyright", "Copyright \251 1993 Microsoft Corp.\0"
88: VALUE "LegalTrademarks", "Microsoft\256 is a registered trademark of Microsoft Corporation. Windows(TM) and Windows NT(TM) are trademarks of Microsoft Corporation.\0"
89: VALUE "OriginalFilename","MINREC.EXE"
90: // VALUE "PrivateBuild", "If FILEFLAGS=VS_FF_PRIVATEBUILD"
91: VALUE "ProductName", "MinRec\0"
92: VALUE "ProductVersion", "1.0\0"
93: // VALUE "SpecialBuild", "If FILEFLAGS=VS_FF_SPECIALBUILD"
94: END
95: END
96: BLOCK "VarFileInfo"
97: BEGIN
98: VALUE "Translation", 0x409, 1252
99: END
100: END
This archive runs on limited infrastructure. Preserving old code on modern bandwidth. Automated agents are requested to crawl responsibly.