InDesign SDK  20.5
 All Classes Namespaces Functions Variables Typedefs Enumerations Enumerator Friends Groups Pages
K2BuildNumber.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 
24 #ifndef __K2BuildNumber_h__
25 #define __K2BuildNumber_h__
26 
27 // ----- kVersionNumberStr represents the product version number in the form it will
28 // be presented to the user.
29 
30 #define kK2VersionNumberStr "1.0"
31 
32 // ----- kVersionNumber is for scripting and should be a 'reasonable' floating-point
33 // representation of the product version number.
34 
35 #define kK2VersionNumber 1.0
36 
37 // ----- Used for plug-in actual and expected version numbers
38 #define kK2MajorVersionNumber RezLong(1)
39 #define kK2MinorVersionNumber RezLong(0)
40 
41 // ----- Numbers for 'vers', FILEVERSION and PRODUCTVERSION resources.
42 #define kK2MajorVersionNumberForResource 1
43 #define kK2MinorVersionNumberForResource 0
44 
45 // ----- Version copyright strings are different for different platforms
46 
47 #ifdef MACINTOSH
48 #define kK2VersionCopyRightStr "1.0, Copyright 2001 Adobe Systems Incorporated. All rights reserved."
49 #endif
50 
51 // {ABD4CBB3-0CFE-11d1-801D-0060B03C02E4}
52 #define kInDesign1_0_CLSID { 0xabd4cbb3, 0x0cfe, 0x11d1, { 0x80, 0x1d, 0x0, 0x60, 0xb0, 0x3c, 0x2, 0xe4 } }
53 // {3A1D0763-FFA9-11d0-801A-0060B03C02E4}
54 #define kInDesignTypeLib1_0_CLSID { 0x3A1D0763, 0xFFA9, 0x11d0, { 0x80, 0x1A, 0x0, 0x60, 0xB0, 0x3C, 0x2, 0xE4 } }
55 
56 // {55BD39B6-E317-11d3-94C7-00C04FA349C7}
57 #define kInCopy1_0_CLSID { 0x55bd39b6, 0xe317, 0x11d3, { 0x94, 0xc7, 0x0, 0xc0, 0x4f, 0xa3, 0x49, 0xc7 } }
58 // {55BD39B7-E317-11d3-94C7-00C04FA349C7}
59 #define kInCopyTypeLib1_0_CLSID { 0x55bd39b7, 0xe317, 0x11d3, { 0x94, 0xc7, 0x0, 0xc0, 0x4f, 0xa3, 0x49, 0xc7 } }
60 
61 #endif