gta.h   gta.h 
skipping to change at line 97 skipping to change at line 97
* \include example-stream-io.cpp * \include example-stream-io.cpp
* \page example-block-io.cpp Examples written in C++: Block-based input/ou tput * \page example-block-io.cpp Examples written in C++: Block-based input/ou tput
* \include example-block-io.cpp * \include example-block-io.cpp
*/ */
#ifndef GTA_H #ifndef GTA_H
#define GTA_H #define GTA_H
#include <stdio.h> #include <stdio.h>
#ifdef _MSC_VER #if defined _MSC_VER && _MSC_VER < 1600
/* MSVC lacks the C99 header <stdint.h> */ /* MSVC versions older than Visual Studio 2010 lack the C99 header <stdint.
h> */
typedef signed __int64 intmax_t; typedef signed __int64 intmax_t;
typedef unsigned __int64 uintmax_t; typedef unsigned __int64 uintmax_t;
# ifdef _WIN64 # ifdef _WIN64
typedef signed __int64 intptr_t; typedef signed __int64 intptr_t;
# else # else
typedef signed int intptr_t; typedef signed int intptr_t;
# endif # endif
#else #else
/* Everyone else has it */ /* Everyone else has it */
# include <stdint.h> # include <stdint.h>
 End of changes. 1 change blocks. 
2 lines changed or deleted 3 lines changed or added


 gta.hpp   gta.hpp 
skipping to change at line 2154 skipping to change at line 2154
* \return The patch version number. * \return The patch version number.
*/ */
inline int version_patch() inline int version_patch()
{ {
int patch; int patch;
gta_version(NULL, NULL, &patch); gta_version(NULL, NULL, &patch);
return patch; return patch;
} }
/*@}*/ /*@}*/
}; }
#endif #endif
 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 "0.9.4" #define GTA_VERSION "1.0.0"
#define GTA_VERSION_MAJOR 0 #define GTA_VERSION_MAJOR 1
#define GTA_VERSION_MINOR 9 #define GTA_VERSION_MINOR 0
#define GTA_VERSION_PATCH 4 #define GTA_VERSION_PATCH 0
#define GTA_VERSION_NUMBER 0x000904 #define GTA_VERSION_NUMBER 0x010000
#endif #endif
 End of changes. 1 change blocks. 
5 lines changed or deleted 5 lines changed or added

This html diff was produced by rfcdiff 1.41. The latest version is available from http://tools.ietf.org/tools/rfcdiff/