On 06/02/15 18:20, Iván Matellanes wrote:
> +/* ?seekoff@streambuf@@UAEJJW4seek_dir@ios@@H@Z */
> +/* ?seekoff@streambuf@@UEAAJJW4seek_dir@ios@@H@Z */
> +DEFINE_THISCALL_WRAPPER(streambuf_seekoff, 16)
> +long __thiscall streambuf_seekoff(streambuf *this, long offset, int dir, int mode)
> +{
> + FIXME("(%p %ld %d %d): stub\n", this, offset, dir, mode);
> + return EOF;
> +}
You can't use long type here, please use LONG instead (it's used also in
some other functions).
Thanks,
Piotr