tb1/tb1_linux/svmwgraph/null_svmwgraph.c
Vince Weaver 137d2b45fd Move tb1 into its own subdir
I'm merging all the the tom bombem projects into one git tree
2012-12-18 21:24:06 -05:00

34 lines
543 B
C

/* The NULL target, for when we don't have an actual output */
#include <stdio.h>
#include "svmwgraph.h"
void *null_setupGraphics(int *xsize,int *ysize,int *bpp,
int fullscreen,int verbose)
{
/* Returning NULL is considered an error */
return (void *)1;
}
void null_flushPalette(vmwSVMWGraphState *state) {
}
void null_BlitMem(vmwSVMWGraphState *target_p, vmwVisual *source) {
}
void null_clearKeyboardBuffer() {
}
int null_getInput() {
return 0;
}
void null_closeGraphics() {
}