gta.h | gta.h | |||
---|---|---|---|---|
skipping to change at line 122 | skipping to change at line 122 | |||
* (You only need to define GTA_STATIC for a static GTA library | * (You only need to define GTA_STATIC for a static GTA library | |||
* if you use Microsoft compilers). */ | * if you use Microsoft compilers). */ | |||
#if (defined _WIN32 || defined __WIN32__) && !defined __CYGWIN__ | #if (defined _WIN32 || defined __WIN32__) && !defined __CYGWIN__ | |||
# ifdef GTA_BUILD | # ifdef GTA_BUILD | |||
# ifdef DLL_EXPORT | # ifdef DLL_EXPORT | |||
# define GTA_EXPORT __declspec(dllexport) | # define GTA_EXPORT __declspec(dllexport) | |||
# else | # else | |||
# define GTA_EXPORT | # define GTA_EXPORT | |||
# endif | # endif | |||
# else | # else | |||
# if defined _MSVC && !defined GTA_STATIC | # if defined _MSC_VER && !defined GTA_STATIC | |||
# define GTA_EXPORT __declspec(dllimport) | # define GTA_EXPORT __declspec(dllimport) | |||
# else | # else | |||
# define GTA_EXPORT | # define GTA_EXPORT | |||
# endif | # endif | |||
# endif | # endif | |||
#else | #else | |||
# define GTA_EXPORT | # define GTA_EXPORT | |||
#endif | #endif | |||
/* Several attributes that may help the compiler to optimize the code or to | /* Several attributes that may help the compiler to optimize the code or to | |||
End of changes. 1 change blocks. | ||||
1 lines changed or deleted | 1 lines changed or added | |||
gta_version.h | gta_version.h | |||
---|---|---|---|---|
skipping to change at line 27 | skipping to change at line 27 | |||
* A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more | * A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more | |||
* details. | * details. | |||
* | * | |||
* You should have received a copy of the GNU Lesser General Public License | * You should have received a copy of the GNU Lesser General Public License | |||
* along with Libgta. If not, see <http://www.gnu.org/licenses/>. | * along with Libgta. If not, see <http://www.gnu.org/licenses/>. | |||
*/ | */ | |||
#ifndef GTA_VERSION_H | #ifndef GTA_VERSION_H | |||
#define GTA_VERSION_H | #define GTA_VERSION_H | |||
#define GTA_VERSION "1.0.3" | #define GTA_VERSION "1.0.4" | |||
#define GTA_VERSION_MAJOR 1 | #define GTA_VERSION_MAJOR 1 | |||
#define GTA_VERSION_MINOR 0 | #define GTA_VERSION_MINOR 0 | |||
#define GTA_VERSION_PATCH 3 | #define GTA_VERSION_PATCH 4 | |||
#define GTA_VERSION_NUMBER 0x010003 | #define GTA_VERSION_NUMBER 0x010004 | |||
#endif | #endif | |||
End of changes. 2 change blocks. | ||||
3 lines changed or deleted | 3 lines changed or added | |||