-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathexport.h
39 lines (27 loc) · 783 Bytes
/
export.h
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
38
39
#pragma once
#ifndef EXPORT_H
#define EXPORT_H
#include "my_types.h"
static int *Animations = (int*)0x006B245C;
static int * const dword_5FCCF4 = (int*)0x5FCCF4;
//static unsigned char * const submarinerDieRelated = (unsigned char*)0x0060CFC4;
static unsigned __int16 * const word_6B2478 = (unsigned __int16*)0x6B2478;
//static int * const gTimerRelated = (int*)0x006B4CA8;
static void print_if_false(unsigned char cry, char * message, ...) {
if (!cry) {
printf(message);
}
}
static void printf_fancy(const char *message, ...) {
// TODO
}
static void stubbed_printf(char *message){
puts(message);
}
static void error(const char *message, ...) {
printf("static void error(const char *message, ...)");
}
static void DebugPrintfX(const char *message, ...)
{
}
#endif