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
75315fa6
Commit
75315fa6
authored
Mar 11, 2002
by
Waldek Hebisch
Committed by
Alexandre Julliard
Mar 11, 2002
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Implemented stdio buffering and ungetc. Misc stdio fixes.
parent
b6c28ff6
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
5 additions
and
3 deletions
+5
-3
file.c
dlls/msvcrt/file.c
+0
-0
msvcrt.spec
dlls/msvcrt/msvcrt.spec
+3
-3
stdio.h
include/msvcrt/stdio.h
+2
-0
No files found.
dlls/msvcrt/file.c
View file @
75315fa6
This diff is collapsed.
Click to expand it.
dlls/msvcrt/msvcrt.spec
View file @
75315fa6
...
@@ -605,7 +605,7 @@ debug_channels (msvcrt)
...
@@ -605,7 +605,7 @@ debug_channels (msvcrt)
@ cdecl fgetpos(ptr ptr) MSVCRT_fgetpos
@ cdecl fgetpos(ptr ptr) MSVCRT_fgetpos
@ cdecl fgets(str long ptr) MSVCRT_fgets
@ cdecl fgets(str long ptr) MSVCRT_fgets
@ cdecl fgetwc(ptr) MSVCRT_fgetwc
@ cdecl fgetwc(ptr) MSVCRT_fgetwc
@
stub fgetws #(wstr long ptr)
@
cdecl fgetws(wstr long ptr) MSVCRT_fgetws
@ forward -noimport floor ntdll.floor
@ forward -noimport floor ntdll.floor
@ cdecl fmod(double double) fmod
@ cdecl fmod(double double) fmod
@ cdecl fopen(str str) MSVCRT_fopen
@ cdecl fopen(str str) MSVCRT_fopen
...
@@ -736,8 +736,8 @@ debug_channels (msvcrt)
...
@@ -736,8 +736,8 @@ debug_channels (msvcrt)
@ cdecl toupper(long) toupper
@ cdecl toupper(long) toupper
@ forward -noimport towlower ntdll.towlower
@ forward -noimport towlower ntdll.towlower
@ forward -noimport towupper ntdll.towupper
@ forward -noimport towupper ntdll.towupper
@
stub ungetc #(long ptr)
@
cdecl ungetc(long ptr) MSVCRT_ungetc
@
stub ungetwc #(long ptr)
@
cdecl ungetwc(long ptr) MSVCRT_ungetwc
@ cdecl vfprintf(ptr str long) MSVCRT_vfprintf
@ cdecl vfprintf(ptr str long) MSVCRT_vfprintf
@ cdecl vfwprintf(ptr wstr long) MSVCRT_vfwprintf
@ cdecl vfwprintf(ptr wstr long) MSVCRT_vfwprintf
@ cdecl vprintf(str long) MSVCRT_vprintf
@ cdecl vprintf(str long) MSVCRT_vprintf
...
...
include/msvcrt/stdio.h
View file @
75315fa6
...
@@ -72,6 +72,8 @@
...
@@ -72,6 +72,8 @@
#define MSVCRT_EOF (-1)
#define MSVCRT_EOF (-1)
#define MSVCRT_BUFSIZ 512
#endif
/* USE_MSVCRT_PREFIX */
#endif
/* USE_MSVCRT_PREFIX */
typedef
struct
MSVCRT
(
_iobuf
)
typedef
struct
MSVCRT
(
_iobuf
)
...
...
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