msvcirt: Add implementation of streambuf::seekoff/seekpos.

This commit is contained in:
Iván Matellanes 2015-06-09 19:40:40 +02:00 committed by Alexandre Julliard
parent 1f1cf8a68e
commit 6b6dc42d61
2 changed files with 11 additions and 4 deletions

View file

@ -354,9 +354,10 @@ int __thiscall streambuf_pbackfail(streambuf *this, int c)
/* ?seekoff@streambuf@@UAEJJW4seek_dir@ios@@H@Z */
/* ?seekoff@streambuf@@UEAAJJW4seek_dir@ios@@H@Z */
DEFINE_THISCALL_WRAPPER(streambuf_seekoff, 16)
streampos __thiscall streambuf_seekoff(streambuf *this, streamoff offset, int dir, int mode)
#define call_streambuf_seekoff(this, off, dir, mode) CALL_VTBL_FUNC(this, 12, streampos, (streambuf*, streamoff, ios_seek_dir, int), (this, off, dir, mode))
streampos __thiscall streambuf_seekoff(streambuf *this, streamoff offset, ios_seek_dir dir, int mode)
{
FIXME("(%p %d %d %d): stub\n", this, offset, dir, mode);
TRACE("(%p %d %d %d)\n", this, offset, dir, mode);
return EOF;
}
@ -365,8 +366,8 @@ streampos __thiscall streambuf_seekoff(streambuf *this, streamoff offset, int di
DEFINE_THISCALL_WRAPPER(streambuf_seekpos, 12)
streampos __thiscall streambuf_seekpos(streambuf *this, streampos pos, int mode)
{
FIXME("(%p %d %d): stub\n", this, pos, mode);
return EOF;
TRACE("(%p %d %d)\n", this, pos, mode);
return call_streambuf_seekoff(this, pos, SEEKDIR_beg, mode);
}
/* ?setb@streambuf@@IAEXPAD0H@Z */

View file

@ -23,6 +23,12 @@
typedef LONG streamoff;
typedef LONG streampos;
typedef enum {
SEEKDIR_beg = 0,
SEEKDIR_cur = 1,
SEEKDIR_end = 2
} ios_seek_dir;
extern void* (__cdecl *MSVCRT_operator_new)(SIZE_T);
extern void (__cdecl *MSVCRT_operator_delete)(void*);