File: framework_linktest.cpp

package info (click to toggle)
warzone2100 4.6.1-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 660,348 kB
  • sloc: cpp: 675,711; ansic: 387,204; javascript: 75,107; python: 16,628; php: 4,294; sh: 3,941; makefile: 2,330; lisp: 1,492; cs: 489; xml: 404; perl: 224; ruby: 156; java: 89
file content (37 lines) | stat: -rw-r--r-- 440 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
#include "lib/framework/wzglobal.h"
#include "lib/framework/types.h"
#include "lib/framework/frame.h"

// --- dummy rendering library implementation ----

void wzToggleFullscreen()
{
}

bool wzIsFullscreen()
{
	return false;
}

void wzFatalDialog(char const*)
{
}

int wzGetTicks()
{
	return 1;
}

void inputInitialise()
{
}

// --- end linking hacks ---

int main(void)
{
	frameInitialise();
	frameUpdate();
	frameShutDown();
	return 0;
}