mirror of
https://github.com/MiSTer-devel/Main_MiSTer.git
synced 2026-04-19 03:04:28 +00:00
12 lines
364 B
C
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
|