diff options
author | ai4rei <ai4rei@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2010-11-19 21:25:30 +0000 |
---|---|---|
committer | ai4rei <ai4rei@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2010-11-19 21:25:30 +0000 |
commit | df56992212c321b8547f2bdf1c83a48b296d629d (patch) | |
tree | b1e33f1b70a925bef7378112b6dbf8a21712636d /src/common/strlib.h | |
parent | 15ec7e3b5d5221c388c4ee97ef2688820e7f9d4b (diff) | |
download | hercules-df56992212c321b8547f2bdf1c83a48b296d629d.tar.gz hercules-df56992212c321b8547f2bdf1c83a48b296d629d.tar.bz2 hercules-df56992212c321b8547f2bdf1c83a48b296d629d.tar.xz hercules-df56992212c321b8547f2bdf1c83a48b296d629d.zip |
* Various VC6-related fixes and tweaks. [Ai4rei]
- Fixed a typo in VC6 project files, that prevented login-server from compiling (bugreport:4061, since r12727).
- Fixed usage of 'long long' in Sql_P_BindSqlDataType preventing SQL VC6 projects from compiling (bugreport:1741, since r10779).
- Fixed usage of 'long long' in strtoull preventing VC6 projects from compiling (bugreport:4059, follow up to r14245).
- Made strtoull default to base 10 and actually process base 8, to match the normal behavior of this function (bugreport:4059, follow up to r14245).
- Fixed functions in db.c not being returned as pointer, causing warnings on VC6.
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/branches/renewal@14466 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/common/strlib.h')
-rw-r--r-- | src/common/strlib.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/strlib.h b/src/common/strlib.h index 29af06015..23f1e191a 100644 --- a/src/common/strlib.h +++ b/src/common/strlib.h @@ -29,7 +29,7 @@ size_t strnlen (const char* string, size_t maxlen); #endif #if defined(WIN32) && defined(_MSC_VER) && _MSC_VER <= 1200 -unsigned long long strtoull(const char* str, char** endptr, int base); +uint64 strtoull(const char* str, char** endptr, int base); #endif int e_mail_check(char* email); |