70 lines
3.0 KiB
C
70 lines
3.0 KiB
C
/*
|
|
ucon64_dat.h - support for DAT files as known from RomCenter, GoodXXXX, etc.
|
|
|
|
Copyright (c) 1999 - 2003 NoisyB <noisyb@gmx.net>
|
|
Copyright (c) 2003 dbjh
|
|
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
it under the terms of the GNU General Public License as published by
|
|
the Free Software Foundation; either version 2 of the License, or
|
|
(at your option) any later version.
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with this program; if not, write to the Free Software
|
|
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
|
*/
|
|
#ifndef UCON64_DAT_H
|
|
#define UCON64_DAT_H
|
|
#ifdef HAVE_CONFIG_H
|
|
#include "config.h"
|
|
#endif
|
|
|
|
extern const st_getopt2_t ucon64_dat_usage[];
|
|
|
|
typedef struct
|
|
{
|
|
uint32_t crc32; // "official" CRC32 checksum of the ROM
|
|
int8_t console; // integer for the console system
|
|
char name[2 * 80]; // name of the ROM
|
|
const char *maker; // maker of the ROM
|
|
const char *country; // country of the ROM
|
|
char misc[25 * 80]; // miscellaneous information about the ROM
|
|
char fname[FILENAME_MAX]; // filename of the ROM
|
|
uint32_t fsize; // size in bytes
|
|
|
|
char datfile[FILENAME_MAX]; // name of the dat file
|
|
char author[100]; // author of dat file
|
|
char version[100]; // version of dat file
|
|
char date[20]; // date of dat file
|
|
char comment[25 * 80]; // comment of dat file
|
|
char refname[100]; // ref name
|
|
|
|
const char *console_usage; // console system usage
|
|
const char *copier_usage; // backup unit usage
|
|
} st_ucon64_dat_t;
|
|
|
|
/*
|
|
ucon64_dat_search() search dat files for crc and return ucon64_dat_t
|
|
ucon64_dat_total_entries() return # of ROMs in all DAT's
|
|
ucon64_dat_view() display the complete dat collection
|
|
ucon64_dat_indexer() create or update index file for DAT's
|
|
ucon64_dat_flush() flush contents of ucon64_dat_t
|
|
ucon64_dat_nfo() view contents of ucon64_dat_t
|
|
*/
|
|
extern st_ucon64_dat_t *ucon64_dat_search (uint32_t crc32, st_ucon64_dat_t *dat);
|
|
extern unsigned int ucon64_dat_total_entries (void);
|
|
extern int ucon64_dat_view (int console, int verbose);
|
|
extern int ucon64_dat_indexer (void);
|
|
//extern st_ucon64_dat_t *ucon64_dat_flush (st_ucon64_dat_t *dat);
|
|
extern void ucon64_dat_nfo (const st_ucon64_dat_t *dat, int display_version);
|
|
extern int ucon64_create_dat (const char *dat_file_name, const char *filename,
|
|
int buheader_len);
|
|
|
|
#endif // UCON64_DAT_H
|