mirror of
https://github.com/pret/pokeheartgold.git
synced 2026-05-11 21:34:25 -05:00
16 lines
503 B
C
16 lines
503 B
C
#ifndef GUARD_MSGFMT_H
|
|
#define GUARD_MSGFMT_H
|
|
|
|
#include "pm_string.h"
|
|
#include "player_data.h"
|
|
|
|
typedef struct MSGFMT MSGFMT;
|
|
|
|
MSGFMT *ScrStrBufs_new(u32 heap_id);
|
|
void ScrStrBufs_delete(MSGFMT *msgFmt);
|
|
void StringExpandPlaceholders(MSGFMT *msgFmt, STRING *dest, const STRING *src);
|
|
void BufferIntegerAsString(MSGFMT *msgFmt, u32 idx, int num, u32 numDigits, STRCONVMODE strconvmode, BOOL whichCharset);
|
|
void BufferPlayersName(MSGFMT *msgFmt, u32 idx, PLAYERDATA *playerData);
|
|
|
|
#endif //GUARD_MSGFMT_H
|