123456789101112131415161718192021 |
- #ifndef VERSION_H
- #define VERSION_H
-
- #define VER_FILEVERSION 1,0,0,0
- #define VER_FILEVERSION_STR "1.0.0.0\0"
-
- #define VER_PRODUCTVERSION 1,0,0,0
- #define VER_PRODUCTVERSION_STR "1.0\0"
-
- #define VER_COMPANYNAME_STR "Your Organization"
- #define VER_FILEDESCRIPTION_STR "CoolApplication"
- #define VER_INTERNALNAME_STR "CoolApplication"
- #define VER_LEGALCOPYRIGHT_STR "Copyright © 2010 Your Organization"
- #define VER_LEGALTRADEMARKS1_STR "All Rights Reserved"
- #define VER_LEGALTRADEMARKS2_STR VER_LEGALTRADEMARKS1_STR
- #define VER_ORIGINALFILENAME_STR "coolapplication.exe"
- #define VER_PRODUCTNAME_STR "CoolApplication"
-
- #define VER_COMPANYDOMAIN_STR "example.org"
-
- #endif // VERSION_H
|