blob: b2e6606d3285867a067edcf6a76e2086cc5e06c5 (
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
25
26
27
28
29
30
31
32
33
34
35
36
|
/*
* Cdrom for Psemu Pro like Emulators
*
* By: linuzappz <linuzappz@hotmail.com>
*
*/
#include "config.h"
#ifdef ENABLE_NLS
#include <libintl.h>
#include <locale.h>
#define _(x) gettext(x)
#define N_(x) (x)
#else
#define _(x) (x)
#define N_(x) (x)
#endif
#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;
}
|