You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
269 B
12 lines
269 B
#include <windows.h>
|
|
#include <stdio.h>
|
|
#include <string.h>
|
|
#include <memory.h>
|
|
#include <malloc.h>
|
|
|
|
#define GTR_MALLOC(x) malloc(x)
|
|
#define GTR_REALLOC(x, y) realloc(x, y)
|
|
#define GTR_FREE(x) free(x)
|
|
|
|
#define FEATURE_RATINGS
|
|
#define USE_ROT_FILE
|