-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvalarrayint.c
25 lines (25 loc) · 938 Bytes
/
valarrayint.c
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
#include "containers.h"
#include "ccl_internal.h"
/****************************************************************************
* ValArrayInt *
****************************************************************************/
#undef ElementType
#undef ValArrayInterface
#undef ElementType
#undef ValArray
#undef tagValArray
#undef _ValArray
#define _ValArray _ValArrayInt
#define tagValArray tagValArrayIntInterface
#define ElementType int
#define ValArrayInterface ValArrayIntInterface
#define ValArray ValArrayInt
#define iValArrayInterface iValArrayInt
#define MaxElementType INT_MAX
#define MinElementType INT_MIN
#define VALARRAY_MAGIC_NUMBER 11223344556677881
#define __IS_INTEGER__
static const guid ValArrayGuidInt = {0xe4386077, 0x540f, 0x4ec0, {0xac,0x95,0xa0,0x96,0x10,0x98,0xc4,0x7f}};
#define ValArrayGuid ValArrayGuidInt
#include "valarraygen.c"
#undef __IS_INTEGER__