spice/server/tests/test_empty_success.c
Christophe Fergeau 011266555a server: fix function prototypes
Several functions in server/ were not specifying an argument list,
ie they were declared as void foo(); When compiling with
-Wstrict-prototypes, this leads to:
test_playback.c:93:5: erreur: function declaration isn’t a prototype
[-Werror=strict-prototypes]
2011-09-05 07:52:20 +02:00

61 lines
1.1 KiB
C

#include <stdlib.h>
#include <strings.h>
#include <spice.h>
SpiceTimer* timer_add(SpiceTimerFunc func, void *opaque)
{
return NULL;
}
void timer_start(SpiceTimer *timer, uint32_t ms)
{
}
void timer_cancel(SpiceTimer *timer)
{
}
void timer_remove(SpiceTimer *timer)
{
}
SpiceWatch *watch_add(int fd, int event_mask, SpiceWatchFunc func, void *opaque)
{
return NULL;
}
void watch_update_mask(SpiceWatch *watch, int event_mask)
{
}
void watch_remove(SpiceWatch *watch)
{
}
void channel_event(int event, SpiceChannelEventInfo *info)
{
}
int main(void)
{
SpiceServer *server = spice_server_new();
SpiceCoreInterface core;
bzero(&core, sizeof(core));
core.base.major_version = SPICE_INTERFACE_CORE_MAJOR;
core.timer_add = timer_add;
core.timer_start = timer_start;
core.timer_cancel = timer_cancel;
core.timer_remove = timer_remove;
core.watch_add = watch_add;
core.watch_update_mask = watch_update_mask;
core.watch_remove = watch_remove;
core.channel_event = channel_event;
spice_server_set_port(server, 5911);
spice_server_init(server, &core);
return 0;
}