InDesign SDK  20.5
 All Classes Namespaces Functions Variables Typedefs Enumerations Enumerator Friends Groups Pages
BPIScriptingDefs.h
1 //========================================================================================
2 //
3 // $File$
4 //
5 // Owner: Adobe Developer Technologies
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 
24 #ifndef _BPIScriptingDefs_h_
25 #define _BPIScriptingDefs_h_
26 
27 // GUIDs for script objects
28 
29 // {EEC6B2A5-B118-436b-B249-A4A68607E6A7}
30 #define kBPIPref_CLSID {0xeec6b2a5, 0xb118, 0x436b, {0xb2, 0x49, 0xa4, 0xa6, 0x86, 0x7, 0xe6, 0xa7} }
31 
32 // ScriptIDs
33 // New ScriptIDs must be registered with Adobe Developer Support to prevent conflict with other scriptable plug-ins.
34 // See the Making Your Plug-in Scriptable tech note.
35 
36 // Object ScriptIDs
37 enum BPIScriptClasses
38 {
39  c_BPIPref = 'BPPR' // The BasicPersistInterface preferences object
40 };
41 
42 // Property ScriptIDs
43 enum BPIScriptProperties
44 {
45  p_BPIPref = 'BPpr',
46  p_BPIData = 'BPda'
47 };
48 
49 #endif //_BPIScriptingDefs_h_
50 
51 // End BPIScriptingDefs.h
52 
53