Commit 34968234 authored by Piotr Caban's avatar Piotr Caban Committed by Alexandre Julliard

msvcp90: Added basic_streambuf<char> class stub.

parent c19d1665
......@@ -26,10 +26,6 @@
#include "windef.h"
#include "winbase.h"
typedef struct {
void *mutex;
} mutex;
/* ??0_Mutex@std@@QAE@XZ */
/* ??0_Mutex@std@@QEAA@XZ */
DEFINE_THISCALL_WRAPPER(mutex_ctor, 4)
......
......@@ -22,6 +22,8 @@
typedef unsigned char MSVCP_bool;
typedef int MSVCP_long;
typedef SIZE_T MSVCP_size_t;
typedef SIZE_T streamoff;
typedef SIZE_T streamsize;
void __cdecl _invalid_parameter(const wchar_t*, const wchar_t*,
const wchar_t*, unsigned int, uintptr_t);
......@@ -201,3 +203,8 @@ typedef struct {
void init_lockit(void);
void free_lockit(void);
/* class mutex */
typedef struct {
void *mutex;
} mutex;
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