]> err.no Git - sope/blob - libFoundation/Foundation/NSConcreteWindowsFileHandle.h
fixed some NGMail framework build issue
[sope] / libFoundation / Foundation / NSConcreteWindowsFileHandle.h
1 /*
2    NSConcreteFileHandle.h
3
4    Copyright (C) 2000 Helge Hess
5    All rights reserved.
6
7    Author: Helge Hess <helge.hess@mdlink.de>
8    Date: Feb 2000
9    
10    This file is part of libFoundation.
11
12    Permission to use, copy, modify, and distribute this software and its
13    documentation for any purpose and without fee is hereby granted, provided
14    that the above copyright notice appear in all copies and that both that
15    copyright notice and this permission notice appear in supporting
16    documentation.
17
18    We disclaim all warranties with regard to this software, including all
19    implied warranties of merchantability and fitness, in no event shall
20    we be liable for any special, indirect or consequential damages or any
21    damages whatsoever resulting from loss of use, data or profits, whether in
22    an action of contract, negligence or other tortious action, arising out of
23    or in connection with the use or performance of this software.
24 */
25 #ifndef __NSConcreteWindowsFileHandle_h__
26 #define __NSConcreteWindowsFileHandle_h__
27
28 #include <Foundation/NSFileHandle.h>
29 #include <config.h>
30
31 #ifdef HAVE_WINDOWS_H
32 #  include <windows.h>
33 #endif
34
35 @interface NSConcreteWindowsFileHandle : NSFileHandle
36 {
37     HANDLE handle;
38     BOOL   closeOnDealloc;
39 }
40
41 @end
42
43 #endif /* __NSConcreteWindowsFileHandle_h__ */
44
45 /*
46   Local Variables:
47   c-basic-offset: 4
48   tab-width: 8
49   End:
50 */