diff options
| author | SND\weimingzhi_cp <SND\weimingzhi_cp@e17a0e51-4ae3-4d35-97c3-1a29b211df97> | 2009-06-29 12:48:12 +0000 |
|---|---|---|
| committer | SND\weimingzhi_cp <SND\weimingzhi_cp@e17a0e51-4ae3-4d35-97c3-1a29b211df97> | 2009-06-29 12:48:12 +0000 |
| commit | 032f74dd1a205a3e2d032e0d0deb60eac8b42de4 (patch) | |
| tree | 362cc2b7c1b4e0a6f21466aea1671fc905bbc66f /libpcsxcore/cdriso.c | |
| parent | bf555e061aaf87c519c402db51472a39a409841a (diff) | |
| download | pcsxr-032f74dd1a205a3e2d032e0d0deb60eac8b42de4.tar.gz | |
implemented cheat search
git-svn-id: https://pcsxr.svn.codeplex.com/svn/pcsxr@23829 e17a0e51-4ae3-4d35-97c3-1a29b211df97
Diffstat (limited to 'libpcsxcore/cdriso.c')
| -rw-r--r-- | libpcsxcore/cdriso.c | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/libpcsxcore/cdriso.c b/libpcsxcore/cdriso.c index 8de93763..07751ce5 100644 --- a/libpcsxcore/cdriso.c +++ b/libpcsxcore/cdriso.c @@ -33,7 +33,6 @@ FILE *cdHandle = NULL; static unsigned char cdbuffer[CD_FRAMESIZE_RAW * 10]; char* CALLBACK CDR__getDriveLetter(void); -unsigned char* CALLBACK CDR__getBufferSub(void); long CALLBACK CDR__configure(void); long CALLBACK CDR__test(void); void CALLBACK CDR__about(void); @@ -279,6 +278,11 @@ static long CALLBACK ISOstop(void) { return 0; // TODO } +// gets subchannel data +unsigned char* CALLBACK ISOgetBufferSub(void) { + return NULL; // TODO +} + void imageReaderInit(void) { assert(hCDRDriver == NULL); @@ -292,10 +296,10 @@ void imageReaderInit(void) { CDR_getBuffer = ISOgetBuffer; CDR_play = ISOplay; CDR_stop = ISOstop; + CDR_getBufferSub = ISOgetBufferSub; CDR_getStatus = CDR__getStatus; CDR_getDriveLetter = CDR__getDriveLetter; - CDR_getBufferSub = CDR__getBufferSub; CDR_configure = CDR__configure; CDR_test = CDR__test; CDR_about = CDR__about; |
