53 lines
959 B
Plaintext
53 lines
959 B
Plaintext
/* $Id$ */
|
|
|
|
|
|
|
|
#ifndef Test_Test_H
|
|
# define Test_Test_H
|
|
|
|
# include <stdbool.h>
|
|
|
|
# include <stdint.h>
|
|
# include <System/App.h>
|
|
|
|
|
|
/* types */
|
|
typedef bool BOOL;
|
|
typedef Buffer * BUFFER;
|
|
typedef double * DOUBLE;
|
|
typedef float * FLOAT;
|
|
typedef int16_t INT16;
|
|
typedef int32_t INT32;
|
|
typedef uint16_t UINT16;
|
|
typedef uint32_t UINT32;
|
|
typedef String const * STRING;
|
|
typedef void VOID;
|
|
typedef bool BOOL_IN;
|
|
|
|
typedef BUFFER BUFFER_IN;
|
|
|
|
typedef DOUBLE DOUBLE_IN;
|
|
|
|
typedef FLOAT FLOAT_IN;
|
|
typedef INT32 INT32_IN;
|
|
typedef UINT32 UINT32_IN;
|
|
typedef STRING STRING_IN;
|
|
typedef bool * BOOL_OUT;
|
|
|
|
typedef Buffer * BUFFER_OUT;
|
|
typedef int32_t * INT32_OUT;
|
|
typedef uint32_t * UINT32_OUT;
|
|
typedef String ** STRING_OUT;
|
|
typedef bool * BOOL_INOUT;
|
|
|
|
typedef Buffer * BUFFER_INOUT;
|
|
typedef int32_t * INT32_INOUT;
|
|
typedef uint32_t * UINT32_INOUT;
|
|
typedef String ** STRING_INOUT;
|
|
|
|
|
|
/* calls */
|
|
void Test_Test(App * app, AppServerClient * client, int32 i32);
|
|
|
|
#endif /* !Test_Test_H */
|