mirror of
https://github.com/deater/tb1.git
synced 2025-01-08 16:30:40 +00:00
33 lines
489 B
C
33 lines
489 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)
|
||
|
{
|
||
|
return NULL;
|
||
|
}
|
||
|
|
||
|
|
||
|
void null_flushPalette(vmwSVMWGraphState *state) {
|
||
|
|
||
|
}
|
||
|
|
||
|
|
||
|
void null_BlitMem(vmwSVMWGraphState *target_p, vmwVisual *source) {
|
||
|
|
||
|
}
|
||
|
|
||
|
void null_clearKeyboardBuffer() {
|
||
|
|
||
|
}
|
||
|
|
||
|
int null_getInput() {
|
||
|
return 0;
|
||
|
}
|
||
|
|
||
|
void null_closeGraphics() {
|
||
|
|
||
|
}
|