InDesign SDK  20.5
 All Classes Namespaces Functions Variables Typedefs Enumerations Enumerator Friends Groups Pages
AnnaBuildNumber.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 __AnnaBuildNumber_h__
25 #define __AnnaBuildNumber_h__
26 
27 // ----- kVersionNumberStr represents the product version number in the form it will
28 // be presented to the user.
29 // ----- kDocVersionNumberStr represents the product version number in the form it will
30 // be presented to the user when opening/saving documents.
31 
32 #define kAnnaVersionNumberStr "2.0"
33 #define kDocVersionNumberStr "2.0"
34 
35 // ----- kVersionNumber is for scripting and should be a 'reasonable' floating-point
36 // representation of the product version number.
37 
38 #define kAnnaVersionNumber 2.0
39 
40 // ----- Used for plug-in actual and expected version numbers
41 #define kAnnaMajorVersionNumber RezLong(2)
42 #define kAnnaMinorVersionNumber RezLong(1) // bumped up for Jekyll final release
43 
44 // ----- Numbers for 'vers', FILEVERSION and PRODUCTVERSION resources.
45 #define kAnnaMajorVersionNumberForResource 2
46 #define kAnnaMinorVersionNumberForResource 0
47 
48 // ----- Version copyright strings are different for different platforms
49 
50 // When updating version strings, the copyright years are cumulative.
51 // e.g. in the future the year string will look like 2000-2003, 2000-2004, etc.
52 #ifdef MACINTOSH
53 #define kAnnaVersionCopyRightStr "2.0, Copyright 2000-2002 Adobe Systems Incorporated. All rights reserved."
54 #endif
55 #ifdef WINDOWS
56 #define kAnnaVersionCopyRightStr "Copyright 2000-2002 Adobe Systems Incorporated. All rights reserved."
57 #define kAnnaShortCopyRightStr "Copyright 2000-2002 Adobe Systems Incorporated."
58 
59 // {0FE80759-A114-4d6d-A0CE-15EADB074478}
60 #define kInDesign2_0_CLSID { 0xfe80759, 0xa114, 0x4d6d, { 0xa0, 0xce, 0x15, 0xea, 0xdb, 0x7, 0x44, 0x78 } }
61 // {ADD27947-E3C0-4823-B826-BEC1C1654078}
62 #define kInDesignTypeLib2_0_CLSID { 0xadd27947, 0xe3c0, 0x4823, { 0xb8, 0x26, 0xbe, 0xc1, 0xc1, 0x65, 0x40, 0x78 } }
63 
64 // {F977BF0B-3E08-4d63-8E6C-F95C3D4B3C43}
65 #define kInCopy2_0_CLSID { 0xf977bf0b, 0x3e08, 0x4d63, { 0x8e, 0x6c, 0xf9, 0x5c, 0x3d, 0x4b, 0x3c, 0x43 } }
66 // {8C87642B-4637-4ce5-8E90-19467A7E89DE}
67 #define kInCopyTypeLib2_0_CLSID { 0x8c87642b, 0x4637, 0x4ce5, { 0x8e, 0x90, 0x19, 0x46, 0x7a, 0x7e, 0x89, 0xde } }
68 
69 #endif
70 
71 
72 #endif