blob: f335d4f828ad1c7e0b73f3a5fb7d91bee871c898 [file] [log] [blame]
Tang Cheng31b95252014-10-23 09:22:35 +08001/*
2ORACLE, Copyright (c) 1998, 2000 ORACLE Corporation
3ORACLE Utilities, Copyright (c) 1981, 1982, 1983, 1986, 1990, 1991,, 1998, 2000 1995,
4 1998 ORACLE Corp
5
6Restricted Rights
7This program is an unpublished work under the Copyright Act of the
8United States and is subject to the terms and conditions stated in
9your license agreement with ORACORP including retrictions on
10use, duplication, and disclosure.
11
12Certain uncopyrighted ideas and concepts are also contained herein.
13These are trade secrets of ORACORP and cannot be used except in
14accordance 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
26struct uvarchar {ub2 len; utext arr[1];};
27typedef struct uvarchar uvarchar;
28
29struct ulong_varchar {ub4 len; utext arr[1];};
30typedef struct ulong_varchar ulong_varchar;
31
32#endif /* SQLUCS2_ORACLE */