-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrc_types_platform.h
More file actions
39 lines (34 loc) · 1.55 KB
/
Copy pathrc_types_platform.h
File metadata and controls
39 lines (34 loc) · 1.55 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
/****************************************************************************
*
* Copyright © 2006-2008 Ciprico Inc. All rights reserved.
* Copyright © 2008-2013 Dot Hill Systems Corp. All rights reserved.
*
* Use of this software is subject to the terms and conditions of the written
* software license agreement between you and DHS (the "License"),
* including, without limitation, the following (as further elaborated in the
* License): (i) THIS SOFTWARE IS PROVIDED "AS IS", AND DHS DISCLAIMS
* ANY AND ALL WARRANTIES OF ANY KIND, WHETHER EXPRESS, IMPLIED, STATUTORY,
* BY CONDUCT, OR OTHERWISE; (ii) this software may be used only in connection
* with the integrated circuit product and storage software with which it was
* designed to be used; (iii) this source code is the confidential information
* of DHS and may not be disclosed to any third party; and (iv) you may not
* make any modification or take any action that would cause this software,
* or any other Dot Hill software, to fall under any GPL license or any other
* open source license.
*
****************************************************************************/
#ifndef RC_TYPES_PLATFORM_H
#define RC_TYPES_PLATFORM_H
#ifndef __BCM_BASETYPES_H__
typedef unsigned char rc_uint8_t;
typedef unsigned short rc_uint16_t;
typedef unsigned int rc_uint32_t;
typedef int rc_int32_t;
#ifndef __LINUX__
typedef unsigned __int64 rc_uint64_t;
#else
typedef unsigned long long rc_uint64_t;
#endif
typedef unsigned long rc_uint_ptr_t;
#endif /* __BCM_BASETYPES_H__ */
#endif /* RC_TYPES_H */