mirror of
https://github.com/pret/pokeplatinum.git
synced 2026-04-17 10:38:46 -05:00
15 lines
232 B
C
15 lines
232 B
C
#ifndef POKEPLATINUM_SIGN_H
|
|
#define POKEPLATINUM_SIGN_H
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
int CRYPTO_VerifySignature(const void *, int, const void *, const void *);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif // POKEPLATINUM_SIGN_H
|