HDK
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
UT_IOS.h
Go to the documentation of this file.
1 /*
2  * PROPRIETARY INFORMATION. This software is proprietary to
3  * Side Effects Software Inc., and is not to be reproduced,
4  * transmitted, or disclosed in any way without written permission.
5  *
6  * NAME: UT_IOS.h (UT Library, C++)
7  *
8  * COMMENTS:
9  *
10  */
11 
12 #ifndef __UT_IOS_H_INCLUDED__
13 #define __UT_IOS_H_INCLUDED__
14 
16 {
17  UT_IOS_ASCII = 0, // ASCII stream
18  UT_IOS_BINARY = 1 // Binary stream
19 };
20 
22 {
23  UT_IOS_SEEK_BEG = 0, // Seek from beginning of stream
24  UT_IOS_SEEK_CUR = 1, // Seek from current location
25  UT_IOS_SEEK_END = 2 // Seek from the end of the stream
26 };
27 
28 #endif // __UT_IOS_H_INCLUDED__
UT_IOS_TYPE
Definition: UT_IOS.h:15
UT_IOS_SEEK
Definition: UT_IOS.h:21