* Added a define for INVALID_SET_FILE_POINTER, a possible return

code for the SetFilePointer() win32 API call.
This commit is contained in:
Corinna Vinschen 2000-12-05 08:53:45 +00:00
parent 785e8cc89e
commit 96963a1423
2 changed files with 6 additions and 0 deletions

View File

@ -1,3 +1,8 @@
Sun Dec 02 14:21:02 2000 Matt Hargett <matt@use.net>
* Added a define for INVALID_SET_FILE_POINTER, a possible return
code for the SetFilePointer() win32 API call.
Mon Oct 9 11:49:00 2000 Corinna Vinschen <corinna@vinschen.de> Mon Oct 9 11:49:00 2000 Corinna Vinschen <corinna@vinschen.de>
* include/winnt.h: Add missing FILE_NAMED_STREAMS define. * include/winnt.h: Add missing FILE_NAMED_STREAMS define.

View File

@ -83,6 +83,7 @@ extern "C" {
#define FILE_BEGIN 0 #define FILE_BEGIN 0
#define FILE_CURRENT 1 #define FILE_CURRENT 1
#define FILE_END 2 #define FILE_END 2
#define INVALID_SET_FILE_POINTER ((DWORD)-1)
#define OF_READ 0 #define OF_READ 0
#define OF_READWRITE 2 #define OF_READWRITE 2
#define OF_WRITE 1 #define OF_WRITE 1