mirror of
https://github.com/pret/pokeheartgold.git
synced 2026-04-26 00:23:14 -05:00
- all local vars to camelcase - header include guards with lib name - comments for preprocessor directives - asm defs back to respective .inc files - /lib/dsprot/tools/ merged to /tools/ - unprefixed globals prefixed - sdk defs consolidated to sdk include - lsf lib split to objects
15 lines
332 B
C
15 lines
332 B
C
#ifndef DSPROT_ROM_TEST_H
|
|
#define DSPROT_ROM_TEST_H
|
|
|
|
#include "sdk.h"
|
|
|
|
// Functions to be encrypted (cannot be called directly)
|
|
u32 ROMTest_IsBad(void);
|
|
u32 ROMTest_IsGood(void);
|
|
|
|
// Assembly decryption wrappers
|
|
extern u32 RunEncrypted_ROMTest_IsBad(void);
|
|
extern u32 RunEncrypted_ROMTest_IsGood(void);
|
|
|
|
#endif // DSPROT_ROM_TEST_H
|