summaryrefslogtreecommitdiff
path: root/libpcsxcore/plugins.c
diff options
context:
space:
mode:
authorSND\edgbla_cp <SND\edgbla_cp@e17a0e51-4ae3-4d35-97c3-1a29b211df97>2010-05-13 15:14:33 +0000
committerSND\edgbla_cp <SND\edgbla_cp@e17a0e51-4ae3-4d35-97c3-1a29b211df97>2010-05-13 15:14:33 +0000
commit1aea114c973f6ec8990fe29bfda40fca3432f636 (patch)
tree29669eb431b648609aa0c2258eb64e3f808c5570 /libpcsxcore/plugins.c
parent3b3dca84f73f81ebb529e00011d8d53f47b6eaf9 (diff)
downloadpcsxr-1aea114c973f6ec8990fe29bfda40fca3432f636.tar.gz
CDRgetBufferSub for internal cdr plugin. %)
git-svn-id: https://pcsxr.svn.codeplex.com/svn/pcsxr@47981 e17a0e51-4ae3-4d35-97c3-1a29b211df97
Diffstat (limited to 'libpcsxcore/plugins.c')
-rw-r--r--libpcsxcore/plugins.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/libpcsxcore/plugins.c b/libpcsxcore/plugins.c
index d5978931..fba84ee1 100644
--- a/libpcsxcore/plugins.c
+++ b/libpcsxcore/plugins.c
@@ -224,6 +224,7 @@ long CALLBACK CDR__getStatus(struct CdrStat *stat) {
}
char* CALLBACK CDR__getDriveLetter(void) { return NULL; }
+unsigned char* CALLBACK CDR__getBufferSub(void) { return NULL; }
long CALLBACK CDR__configure(void) { return 0; }
long CALLBACK CDR__test(void) { return 0; }
void CALLBACK CDR__about(void) {}
@@ -265,7 +266,7 @@ static int LoadCDRplugin(const char *CDRdll) {
LoadCdrSym0(stop, "CDRstop");
LoadCdrSym0(getStatus, "CDRgetStatus");
LoadCdrSym0(getDriveLetter, "CDRgetDriveLetter");
- LoadCdrSym1(getBufferSub, "CDRgetBufferSub");
+ LoadCdrSym0(getBufferSub, "CDRgetBufferSub");
LoadCdrSym0(configure, "CDRconfigure");
LoadCdrSym0(test, "CDRtest");
LoadCdrSym0(about, "CDRabout");