summaryrefslogtreecommitdiff
path: root/plugins/dfcdrom/cdr.c
blob: 7458c833bb60442a12681a2c7918edbbd1508afa (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
/*
 * Cdrom for Psemu Pro like Emulators
 *
 * By: linuzappz <linuzappz@hotmail.com>
 *
 */

#if defined (__linux__)
#include "cdr-linux.c"
#else
#include "cdr-null.c"
#endif

char *PSEgetLibName(void) {
	return _(LibName);
}

unsigned long PSEgetLibType(void) {
	return PSE_LT_CDR;
}

unsigned long PSEgetLibVersion(void) {
	return 1 << 16;
}