LUMIERA.clone/tests/common/hello_interface.h

17 lines
521 B
C
Raw Normal View History

#include "common/interface.h"
2007-07-18 00:10:02 +02:00
/*
one interface which can greet in different languages
*/
2008-10-26 22:04:58 +01:00
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)),
);