22 lines
585 B
Plaintext
22 lines
585 B
Plaintext
/* $Id$ */
|
|
|
|
|
|
|
|
#ifndef Test_Test_H
|
|
# define Test_Test_H
|
|
|
|
# include <stdbool.h>
|
|
# include <stdint.h>
|
|
# include <System/App.h>
|
|
|
|
|
|
/* calls */
|
|
void Test_Test(App * app, AppServerClient * client, int32_t i32);
|
|
bool Test_Test2(App * app, AppServerClient * client, int32_t *);
|
|
String const * Test_Test3(App * app, AppServerClient * client);
|
|
void Test_Test4(App * app, AppServerClient * client, int8_t, uint16_t);
|
|
void Test_Test5(App * app, AppServerClient * client, int8_t const *, uint16_t const *);
|
|
String const ** Test_Test6(App * app, AppServerClient * client);
|
|
|
|
#endif /* !Test_Test_H */
|