Files
Main_MiSTer/support/chd/mister_chd.h
2022-02-20 23:21:22 +08:00

12 lines
364 B
C

#ifndef MISTER_CHD_INCLUDED
#define MISTER_CHD_INCLUDED
#include <libchdr/chd.h>
#include <libchdr/cdrom.h>
#include "../../cd.h"
chd_error mister_chd_read_sector(chd_file *chd_f, int lba, uint32_t d_offset, uint32_t s_offset, int length, uint8_t *destbuf, uint8_t *hunkbuf, int *hunknum);
chd_error mister_load_chd(const char *filename, toc_t *cd_toc);
#endif