Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
f357f4a5
Commit
f357f4a5
authored
Aug 24, 2011
by
Piotr Caban
Committed by
Alexandre Julliard
Aug 24, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msvcp90: Added basic_streambuf<char> buffer accessing functions implementation.
parent
a1bfde59
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
18 additions
and
12 deletions
+18
-12
ios.c
dlls/msvcp90/ios.c
+18
-12
No files found.
dlls/msvcp90/ios.c
View file @
f357f4a5
...
...
@@ -977,8 +977,8 @@ basic_streambuf_char* __thiscall MSVCP_basic_streambuf_char_vector_dtor(basic_st
DEFINE_THISCALL_WRAPPER
(
basic_streambuf_char__Gnavail
,
4
)
streamsize
__thiscall
basic_streambuf_char__Gnavail
(
const
basic_streambuf_char
*
this
)
{
FIXME
(
"(%p) stub
\n
"
,
this
);
return
0
;
TRACE
(
"(%p)
\n
"
,
this
);
return
*
this
->
prpos
?
*
this
->
prsize
:
0
;
}
/* ?_Gndec@?$basic_streambuf@DU?$char_traits@D@std@@@std@@IAEPADXZ */
...
...
@@ -986,8 +986,10 @@ streamsize __thiscall basic_streambuf_char__Gnavail(const basic_streambuf_char *
DEFINE_THISCALL_WRAPPER
(
basic_streambuf_char__Gndec
,
4
)
char
*
__thiscall
basic_streambuf_char__Gndec
(
basic_streambuf_char
*
this
)
{
FIXME
(
"(%p) stub
\n
"
,
this
);
return
NULL
;
TRACE
(
"(%p)
\n
"
,
this
);
(
*
this
->
prsize
)
++
;
(
*
this
->
prpos
)
--
;
return
*
this
->
prpos
;
}
/* ?_Gninc@?$basic_streambuf@DU?$char_traits@D@std@@@std@@IAEPADXZ */
...
...
@@ -995,8 +997,9 @@ char* __thiscall basic_streambuf_char__Gndec(basic_streambuf_char *this)
DEFINE_THISCALL_WRAPPER
(
basic_streambuf_char__Gninc
,
4
)
char
*
__thiscall
basic_streambuf_char__Gninc
(
basic_streambuf_char
*
this
)
{
FIXME
(
"(%p) stub
\n
"
,
this
);
return
NULL
;
TRACE
(
"(%p)
\n
"
,
this
);
(
*
this
->
prsize
)
--
;
return
(
*
this
->
prpos
)
++
;
}
/* ?_Gnpreinc@?$basic_streambuf@DU?$char_traits@D@std@@@std@@IAEPADXZ */
...
...
@@ -1004,8 +1007,10 @@ char* __thiscall basic_streambuf_char__Gninc(basic_streambuf_char *this)
DEFINE_THISCALL_WRAPPER
(
basic_streambuf_char__Gnpreinc
,
4
)
char
*
__thiscall
basic_streambuf_char__Gnpreinc
(
basic_streambuf_char
*
this
)
{
FIXME
(
"(%p) stub
\n
"
,
this
);
return
NULL
;
TRACE
(
"(%p)
\n
"
,
this
);
(
*
this
->
prsize
)
--
;
(
*
this
->
prpos
)
++
;
return
*
this
->
prpos
;
}
/* ?_Init@?$basic_streambuf@DU?$char_traits@D@std@@@std@@IAEXPAPAD0PAH001@Z */
...
...
@@ -1054,8 +1059,8 @@ void __thiscall basic_streambuf_char__Lock(basic_streambuf_char *this)
DEFINE_THISCALL_WRAPPER
(
basic_streambuf_char__Pnavail
,
4
)
streamsize
__thiscall
basic_streambuf_char__Pnavail
(
const
basic_streambuf_char
*
this
)
{
FIXME
(
"(%p) stub
\n
"
,
this
);
return
0
;
TRACE
(
"(%p)
\n
"
,
this
);
return
*
this
->
pwpos
?
*
this
->
pwsize
:
0
;
}
/* ?_Pninc@?$basic_streambuf@DU?$char_traits@D@std@@@std@@IAEPADXZ */
...
...
@@ -1063,8 +1068,9 @@ streamsize __thiscall basic_streambuf_char__Pnavail(const basic_streambuf_char *
DEFINE_THISCALL_WRAPPER
(
basic_streambuf_char__Pninc
,
4
)
char
*
__thiscall
basic_streambuf_char__Pninc
(
basic_streambuf_char
*
this
)
{
FIXME
(
"(%p) stub
\n
"
,
this
);
return
NULL
;
TRACE
(
"(%p)
\n
"
,
this
);
(
*
this
->
pwsize
)
--
;
return
(
*
this
->
pwpos
)
++
;
}
/* ?_Sgetn_s@?$basic_streambuf@DU?$char_traits@D@std@@@std@@QAEHPADIH@Z */
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment