mirror of
https://github.com/Ninjdai1/pokeemerald.git
synced 2024-11-16 19:47:35 +01:00
23 lines
433 B
C
23 lines
433 B
C
#ifndef GUARD_unknown_task_H
|
|
#define GUARD_unknown_task_H
|
|
|
|
// Exported type declarations
|
|
struct UnknownTaskStruct
|
|
{
|
|
volatile void *dest;
|
|
u32 control;
|
|
u8 unk8;
|
|
u8 unk9;
|
|
};
|
|
|
|
extern struct UnknownTaskStruct gUnknown_0831AC70;
|
|
|
|
// Exported RAM declarations
|
|
|
|
// Exported ROM declarations
|
|
void remove_some_task(void);
|
|
void sub_80BA038(struct UnknownTaskStruct arg0);
|
|
void sub_80BA0A8(void);
|
|
|
|
#endif // GUARD_unknown_task_H
|