LUMIERA.clone/tests/lumiera/hello_interface.h
Christian Thaeter f061da8873 WIP: Fix include paths in tests
Still don't link, this only fixes the paths
2008-12-17 17:58:31 +01:00

16 lines
518 B
C

#include "lib/interface.h"
/*
one interface which can greet in different languages
*/
LUMIERA_INTERFACE_DECLARE (lumieraorg_testhello, 0,
LUMIERA_INTERFACE_SLOT (void, hello, (void)),
LUMIERA_INTERFACE_SLOT (void, goodbye, (const char*)),
);
/*
and now one which will be used to test if interfaces can open and call each other
*/
LUMIERA_INTERFACE_DECLARE (lumieraorg_testtest, 0,
LUMIERA_INTERFACE_SLOT (void, testit, (void)),
);