InDesign SDK  20.5
 All Classes Namespaces Functions Variables Typedefs Enumerations Enumerator Friends Groups Pages
ServerSettingsID.h
1 //========================================================================================
2 //
3 // $File$
4 //
5 // Owner: Michael Burbidge
6 //
7 // $Author$
8 //
9 // $DateTime$
10 //
11 // $Revision$
12 //
13 // $Change$
14 //
15 // Copyright 1997-2010 Adobe Systems Incorporated. All rights reserved.
16 //
17 // NOTICE: Adobe permits you to use, modify, and distribute this file in accordance
18 // with the terms of the Adobe license agreement accompanying it. If you have received
19 // this file from a source other than Adobe, then your use, modification, or
20 // distribution of it requires the prior written permission of Adobe.
21 //
22 //
23 // Description: Declares an interface for setting global server state,
24 // primarily for performance benefits.
25 //
26 //========================================================================================
27 
28 #ifndef __ServerSettingsID__
29 #define __ServerSettingsID__
30 
31 #include "SoapServerID.h"
32 
33 // <Interface ID>
34 START_IDS()
35 
36 
37 // <Class ID>
38 // ClassIDs
39 
40 // <Implementation ID>
41 
42 
43 //
44 //Script Element IDs
45 //
46 
47 //Suites
48 
49 //Objects
50 
51 //Properties
52 END_IDS()
53 
54 #ifndef RESOURCE_NUMBER //avoid errors in SoapServerID.fr
55 
56 enum ServerPreferencesClasses
57 {
58  c_ServerPrefs = 'sprC'
59 };
60 
61 enum ServerPreferencesProperties
62 {
63  p_ServerPrefs = 'sprP',
64 // p_PortNumber = 'spPt',
65  p_UseConsole = 'spCo',
66 // p_ConfigurationName = 'spCN',
67  p_UseErrorList = 'spEL',
68  p_UseSEH = 'spSE',
69  p_CreatePreviews = 'spCP',
70  p_SendCrashLogs = 'spCL',
71  p_UseEventLog = 'spEv',
72  p_IORFile = 'spIO',
73  p_PluginPaths = 'spPP',
74  p_MaxErrors = 'spME',
75  p_AdminPort = 'aprt',
76  p_HostName = 'hnam',
77 };
78 
79 // {7BF1624E-C892-441e-8468-EB8D48BD3D52}
80 #define kServerPrefs_CLSID { 0x7bf1624e, 0xc892, 0x441e, { 0x84, 0x68, 0xeb, 0x8d, 0x48, 0xbd, 0x3d, 0x52 } }
81 
82 #endif
83 
84 #endif