Initial commit
This commit is contained in:
35
application/target/street.h
Normal file
35
application/target/street.h
Normal file
@@ -0,0 +1,35 @@
|
||||
#ifndef _street
|
||||
|
||||
#define _street
|
||||
|
||||
|
||||
// Macros
|
||||
|
||||
|
||||
|
||||
#include "stdlib.h"
|
||||
|
||||
extern char * __ClassNames[];
|
||||
|
||||
|
||||
// Includes
|
||||
|
||||
|
||||
typedef struct address{
|
||||
|
||||
unsigned short __classIndex;
|
||||
|
||||
char * street;
|
||||
|
||||
int number;
|
||||
|
||||
|
||||
} address;
|
||||
|
||||
void address_someMethod( address * this );
|
||||
|
||||
address address_new( );
|
||||
|
||||
address * address_newPointer( );
|
||||
|
||||
#endif
|
||||
Reference in New Issue
Block a user