summaryrefslogtreecommitdiff
path: root/include/event.h
blob: c0c1c991df06f8d90f6c196df3d5fe9c072c1e75 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#ifndef __KAMEK_EVENT_H
#define __KAMEK_EVENT_H

#include <common.h>

#ifdef REGION_PAL
	#define EVENT_TABLE (*((void**)0x8042A358))
#endif

#ifdef REGION_NTSC
	// ...
#endif

void TriggerEventFlag(void *eventstruct, u8 event, u8 delay, u8 method, s32 unk3, u8 expiry, s32 unk5);

#endif