mirror of
https://github.com/libretro/xmil-libretro.git
synced 2024-11-23 08:09:42 +00:00
8fdc122b6b
refs #97 svn merge -r 116:117 https://amethyst.yui.ne.jp/svn-dev/x1/xmil/branches/yui/WORK_01 svn merge -r 144:145 https://amethyst.yui.ne.jp/svn-dev/x1/xmil/branches/yui/WORK_01 svn merge -r 153:154 https://amethyst.yui.ne.jp/svn-dev/x1/xmil/branches/yui/WORK_01 svn merge -r 158:159 https://amethyst.yui.ne.jp/svn-dev/x1/xmil/branches/yui/WORK_01 svn merge -r 217:218 https://amethyst.yui.ne.jp/svn-dev/x1/xmil/branches/yui/WORK_01
23 lines
446 B
C
23 lines
446 B
C
/**
|
|
* @file ini.h
|
|
* @brief 設定ファイル アクセスの宣言およびインターフェイスの定義をします
|
|
*/
|
|
|
|
#include "profile.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C"
|
|
{
|
|
#endif
|
|
|
|
void ini_read(LPCTSTR lpPath, LPCTSTR lpTitle, const PFTBL* lpTable, UINT nCount);
|
|
void ini_write(LPCTSTR lpPath, LPCTSTR lpTitle, const PFTBL* lpTable, UINT nCount);
|
|
|
|
void initgetfile(LPTSTR lpPath, UINT cchPath);
|
|
void initload(void);
|
|
void initsave(void);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|