-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathprocessedout_types.h
More file actions
59 lines (48 loc) · 926 Bytes
/
processedout_types.h
File metadata and controls
59 lines (48 loc) · 926 Bytes
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
#ifndef PROCESSEDOUT_TYPES_H
#define PROCESSEDOUT_TYPES_H
#include "rtwtypes.h"
#ifndef struct_emxArray_boolean_T
#define struct_emxArray_boolean_T
struct emxArray_boolean_T
{
bool *data;
int *size;
int allocatedSize;
int numDimensions;
bool canFreeData;
};
#endif
#ifndef struct_emxArray_int32_T
#define struct_emxArray_int32_T
struct emxArray_int32_T
{
int *data;
int *size;
int allocatedSize;
int numDimensions;
bool canFreeData;
};
#endif
#ifndef struct_emxArray_real_T
#define struct_emxArray_real_T
struct emxArray_real_T
{
double *data;
int *size;
int allocatedSize;
int numDimensions;
bool canFreeData;
};
#endif
#ifndef struct_emxArray_uint8_T
#define struct_emxArray_uint8_T
struct emxArray_uint8_T
{
unsigned char *data;
int *size;
int allocatedSize;
int numDimensions;
bool canFreeData;
};
#endif
#endif