Add files via upload
This commit is contained in:
32
source/par1j/ini.h
Normal file
32
source/par1j/ini.h
Normal file
@@ -0,0 +1,32 @@
|
||||
#ifndef _INI_H_
|
||||
#define _INI_H_
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
|
||||
#define INI_NAME_LEN 38 // 検査結果ファイルのファイル名の文字数
|
||||
|
||||
extern int recent_data;
|
||||
|
||||
int check_ini_file(unsigned char *set_hash, int file_num);
|
||||
void close_ini_file(void);
|
||||
void write_ini_file(void);
|
||||
|
||||
int check_ini_state(
|
||||
int num, // ファイル番号
|
||||
unsigned int meta[7], // サイズ、作成日時、更新日時、ボリューム番号、オブジェクト番号
|
||||
HANDLE hFile); // そのファイルのハンドル
|
||||
|
||||
void write_ini_state(
|
||||
int num, // ファイル番号
|
||||
unsigned int meta[7], // サイズ、作成日時、更新日時、ボリューム番号、オブジェクト番号
|
||||
int state); // 状態
|
||||
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif
|
||||
Reference in New Issue
Block a user