summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--config.h2
-rw-r--r--dll.cpp6
-rw-r--r--files.cpp2
3 files changed, 5 insertions, 5 deletions
diff --git a/config.h b/config.h
index 6b61a48..7ab76c5 100644
--- a/config.h
+++ b/config.h
@@ -264,7 +264,7 @@ NAMESPACE_END
#endif
#define CRYPTOPP_API __stdcall
-#define CRYPTOPP_CDECL _cdecl
+#define CRYPTOPP_CDECL __cdecl
#else // CRYPTOPP_WIN32_AVAILABLE
diff --git a/dll.cpp b/dll.cpp
index 63d5427..f8714a1 100644
--- a/dll.cpp
+++ b/dll.cpp
@@ -55,7 +55,7 @@ using std::set_new_handler;
static PNew s_pNew = NULL;
static PDelete s_pDelete = NULL;
-static void * _cdecl New (size_t size)
+static void * CRYPTOPP_CDECL New (size_t size)
{
new_handler newHandler = set_new_handler(NULL);
if (newHandler)
@@ -124,7 +124,7 @@ static void SetNewAndDeleteFunctionPointers()
throw 0;
}
-void * _cdecl operator new (size_t size)
+void * CRYPTOPP_CDECL operator new (size_t size)
{
if (!s_pNew)
SetNewAndDeleteFunctionPointers();
@@ -132,7 +132,7 @@ void * _cdecl operator new (size_t size)
return s_pNew(size);
}
-void _cdecl operator delete (void * p)
+void CRYPTOPP_CDECL operator delete (void * p)
{
s_pDelete(p);
}
diff --git a/files.cpp b/files.cpp
index 25300a1..59d05d6 100644
--- a/files.cpp
+++ b/files.cpp
@@ -144,7 +144,7 @@ unsigned int FileStore::CopyRangeTo2(BufferedTransformation &target, unsigned lo
unsigned long FileStore::Skip(unsigned long skipMax)
{
unsigned long oldPos = m_stream->tellg();
- m_stream->seekg(skipMax, ios_base::cur);
+ m_stream->seekg(skipMax, ios::cur);
return (unsigned long)m_stream->tellg() - oldPos;
}