Expose some msvcr80.dll functions.

* include/stdio.h (_fseek_nolock. _ftell_nolock, _fseeki64,
	_ftelli64, _fseeki64_nolock, _ftelli64_nolock) Add prototypes
	* msvcrt.def.in (_fseek_nolock. _ftell_nolock, _fseeki64,
	_ftelli64, _fseeki64_nolock, _ftelli64_nolock) Add stubs.
This commit is contained in:
Danny Smith 2007-01-27 09:50:11 +00:00
parent b8d1550207
commit 9571d219fe
3 changed files with 24 additions and 1 deletions

View File

@ -1,3 +1,11 @@
2007-01-27 Danny Smith <dannysmith@users.sourceforge.net>
Expose some more msvcr80.dll functions.
* include/stdio.h (_fseek_nolock. _ftell_nolock, _fseeki64,
_ftelli64, _fseeki64_nolock, _ftelli64_nolock) Add prototypes
* msvcrt.def.in (_fseek_nolock. _ftell_nolock, _fseeki64,
_ftelli64, _fseeki64_nolock, _ftelli64_nolock) Add stubs.
2007-01-26 Danny Smith <dannysmith@users.sourceforge.net>
Expose some msvcr80.dll functions.
@ -11,7 +19,6 @@
* msvcrt.def.in (_get_printf_count_output,_set_printf_count_output,
_set_abort_behavior, _set_invalid_parameter_handler): Add stubs.
2007-01-26 Danny Smith <dannysmith@users.sourceforge.net>
* include/_mingw.h (CRT_INLINE): Correct typo.

View File

@ -296,6 +296,16 @@ _CRTIMP int __cdecl fseek (FILE*, long, int);
_CRTIMP long __cdecl ftell (FILE*);
_CRTIMP void __cdecl rewind (FILE*);
#if __MSVCRT_VERSION__ >= 0x800
_CRTIMP int __cdecl _fseek_nolock (FILE*, long, int);
_CRTIMP long __cdecl _ftell_nolock (FILE*);
_CRTIMP int __cdecl _fseeki64 (FILE*, __int64, int);
_CRTIMP __int64 __cdecl _ftelli64 (FILE*);
_CRTIMP int __cdecl _fseeki64_nolock (FILE*, __int64, int);
_CRTIMP __int64 __cdecl _ftelli64_nolock (FILE*);
#endif
#ifdef __USE_MINGW_FSEEK /* These are in libmingwex.a */
/*
* Workaround for limitations on win9x where a file contents are

View File

@ -812,4 +812,10 @@ _get_printf_count_output
_set_printf_count_output
_set_abort_behavior
_set_invalid_parameter_handler
_fseek_nolock
_ftell_nolock
_fseeki64
_ftelli64
_fseeki64_nolock
_ftelli64_nolock
#endif /* 8.0 */