Tang Cheng | 37650ea | 2014-10-20 16:14:41 +0800 | [diff] [blame^] | 1 | /* |
| 2 | ORACLE, Copyright (c) 1998, 2000 ORACLE Corporation |
| 3 | ORACLE Utilities, Copyright (c) 1981, 1982, 1983, 1986, 1990, 1991,, 1998, 2000 1995, |
| 4 | 1998 ORACLE Corp |
| 5 | |
| 6 | Restricted Rights |
| 7 | This program is an unpublished work under the Copyright Act of the |
| 8 | United States and is subject to the terms and conditions stated in |
| 9 | your license agreement with ORACORP including retrictions on |
| 10 | use, duplication, and disclosure. |
| 11 | |
| 12 | Certain uncopyrighted ideas and concepts are also contained herein. |
| 13 | These are trade secrets of ORACORP and cannot be used except in |
| 14 | accordance with the written permission of ORACLE Corporation. |
| 15 | */ |
| 16 | |
| 17 | #ifndef SQLUCS2_ORACLE |
| 18 | #define SQLUCS2_ORACLE |
| 19 | |
| 20 | #ifndef ORATYPES |
| 21 | # ifndef S_ORACLE |
| 22 | # include <oratypes.h> |
| 23 | # endif /* S_ORACLE */ |
| 24 | #endif /* ORATYPES */ |
| 25 | |
| 26 | struct uvarchar {ub2 len; utext arr[1];}; |
| 27 | typedef struct uvarchar uvarchar; |
| 28 | |
| 29 | struct ulong_varchar {ub4 len; utext arr[1];}; |
| 30 | typedef struct ulong_varchar ulong_varchar; |
| 31 | |
| 32 | #endif /* SQLUCS2_ORACLE */ |