id.h 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. //
  2. //////////////////////////////////////////////////////////////////////////////
  3. //
  4. // Copyright 2015 Autodesk, Inc. All rights reserved.
  5. //
  6. // Use of this software is subject to the terms of the Autodesk license
  7. // agreement provided at the time of installation or download, or which
  8. // otherwise accompanies this software in either electronic or hard copy form.
  9. //
  10. //////////////////////////////////////////////////////////////////////////////
  11. //
  12. #ifndef _ID_H
  13. #define _ID_H
  14. /* ID.H
  15. Define AutoCAD version numbers
  16. !!! IMPORTANT !!! IMPORTANT !!! IMPORTANT !!!
  17. Text-filtering scripts process this file to extract the version
  18. information. You should only change the values for the ACADV_*,
  19. ACADVFULL, and ACADVNUM macros.
  20. DO NOT MAKE OTHER CHANGES TO THIS FILE.
  21. The ACADV_* macros below have the following valid ranges.
  22. They implement a specific naming convention (see R160BPLT1 for
  23. details). Changing the naming convention will require changing
  24. IDVER.H, which depends on these ACADV_* values.
  25. (The ranges that include letters are case-sensitive.)
  26. !!! All numbers need to be expressed as decimal numbers.
  27. Not octal, 03, and not hexadecimal, 0x03.
  28. ACADV_RELMAJOR a nonnegative number, e.g., 13, 14, 15.
  29. ACADV_RELMINOR 0 .. 9
  30. ACADV_BLDSTREAM A .. Z
  31. ACADV_BLDMAJOR 0 .. 9 .. 99
  32. ACADV_BLDMINOR 0 .. 9 .. 99
  33. */
  34. #define ACADV_RELMAJOR 20 /*ReleaseMajor*/
  35. #define ACADV_RELMINOR 1 /*ReleaseMinor*/
  36. /* The ASM_ values below should be updated whenever we get a new ASM drop.
  37. Check the File Version and Product Version on any asm dll. */
  38. #define ASM_FILE_RELMAJOR 221
  39. #define ASM_FILE_RELMINOR 0
  40. #define ASM_FILE_RELPOINT 0
  41. #define ASM_FILE_RELPATCH 1871
  42. #define ASM_PROD_RELMAJOR 221
  43. #define ASM_PROD_RELMINOR 0
  44. #define ASM_PROD_RELPOINT 0
  45. #define ASM_PROD_RELPATCH 1871
  46. #endif /* _ID_H */