blob: f1e52605c4c49e978c9d1a5622c52adc55f3e1ab (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
|
//
// Copyright (c) 1990-2003 Microsoft Corporation
// All Rights Reserved
//
#include "windows.h"
#include "compstui.h"
#include "cpsuisam.h"
IDI_APPLE ICON PRELOAD icons\Apple.ico
IDI_CPSUISAMPLE ICON PRELOAD icons\cpsuisam.ico
CPSUISampleMenu MENU
BEGIN
POPUP "&Test Options"
BEGIN
MENUITEM "&Default Printer Properties", IDM_DOCPROP
MENUITEM "CPSUI &TreeView Test", IDM_TVTEST
MENUITEM SEPARATOR
MENUITEM "&CPSUI Test All", IDM_DOCPROP_TVTEST
MENUITEM SEPARATOR
MENUITEM "&Permission", IDM_PERMISSION
MENUITEM "&Use Standard About" IDM_USESTDABOUT
END
END
#include "cpsuisam.dlg"
#include <ntverp.h>
#define VER_FILETYPE VFT_APP
#define VER_FILESUBTYPE VFT2_UNKNOWN
#define VER_FILEDESCRIPTION_STR "Common Property Sheet UI Sample Applet"
#define VER_INTERNALNAME_STR "cpsuisam.exe"
#define VER_ORIGINALFILENAME_STR "cpsuisam.exe"
#include "common.ver"
|