Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 16bc625fe550066f20e71c69cc2860616cbc92c8 (plain) (blame)
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
#include <Simple.h>

const SimpleStruct simpleStruct =
{
	1
  , "mySimple"
  , 0.1232
};

#define SIZEOF( A, B ) sizeof( A.B )

const OtherStruct array[] =
{
	{
#if FOO
		"foo"
#else
		"bar"
#endif
	  ,	SIZEOF( simpleStruct, num )
	  , &t_int
	  , 0
	}
  , {
		"name"
	  , SIZEOF( simpleStruct, floatnum )
	  , &t_float
	  , 1
	}
};


void SimpleStruct_construct( struct SimpleStruct * const this )
{
	this->num = 1;
	this->name = "boo";
	this->floatNum = 1.5;
}

int ConnectParams_doSomething( const struct SimpleStruct * const this )
{
	return 1;
}

Back to the top