Commit 6b5e9e3e authored by Piotr Caban's avatar Piotr Caban Committed by Alexandre Julliard

msvcp100: Fixed streamoff and streamsize definition.

parent 4fe6e583
......@@ -22,8 +22,8 @@
typedef unsigned char MSVCP_bool;
typedef SIZE_T MSVCP_size_t;
typedef SSIZE_T streamoff;
typedef SSIZE_T streamsize;
typedef __int64 streamoff;
typedef __int64 streamsize;
void __cdecl _invalid_parameter(const wchar_t*, const wchar_t*,
const wchar_t*, unsigned int, uintptr_t);
......
......@@ -3895,7 +3895,7 @@ int __thiscall basic_stringbuf_wchar__Getstate(basic_stringbuf_wchar *this, IOSB
DEFINE_THISCALL_WRAPPER(basic_stringbuf_wchar__Init, 16)
void __thiscall basic_stringbuf_wchar__Init(basic_stringbuf_wchar *this, const wchar_t *str, MSVCP_size_t count, int state)
{
TRACE("(%p, %p, %ld, %d)\n", this, str, count, state);
TRACE("(%p, %p, %lu, %d)\n", this, str, count, state);
basic_streambuf_wchar__Init_empty(&this->base);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment