Add files via upload

This commit is contained in:
Yutaka Sawada
2023-03-12 10:41:47 +09:00
committed by GitHub
parent 0f1519770b
commit e218f5f634
16 changed files with 6303 additions and 0 deletions

32
source/par1j/ini.h Normal file
View 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