mirror of
https://github.com/rvtr/TwlToolsRED.git
synced 2025-10-31 06:41:18 -04:00
perlのほうが楽だけど、cygwin入れるの嫌がられるのでVCで作成。 git-svn-id: file:///Users/lillianskinner/Downloads/platinum/twl/TwlToolsRED@107 7061adef-622a-194b-ae81-725974e89856
26 lines
803 B
C++
26 lines
803 B
C++
#pragma once
|
|
|
|
#include <twl/types.h>
|
|
#include <twl/os/common/format_rom.h>
|
|
|
|
namespace RomFilenameDecoderTWL
|
|
{
|
|
|
|
// ------------------------------------------------------------------
|
|
// ROMヘッダの読み込み
|
|
// ------------------------------------------------------------------
|
|
System::Boolean readRomHeader( System::String ^srlfile, ROM_Header *rh );
|
|
|
|
// ------------------------------------------------------------------
|
|
// String を char 配列に格納
|
|
// ------------------------------------------------------------------
|
|
|
|
// @arg [out] 格納先
|
|
// @arg [in] 格納元
|
|
// @arg [in] 文字列長
|
|
// @arg [in] 余りを埋める padding
|
|
void setStringToChars( char *pDst, System::String ^hSrc,
|
|
const System::Int32 nMax, const System::SByte pad );
|
|
|
|
} //namespace RomFilenameDecoderTWL
|