cdvdgigaherz: Remove CDVDabout and SysMessage

It's not accessible from PCSX2. More importantly, I don't want to port
it.
This commit is contained in:
Jonathan Li 2016-10-19 00:12:57 +01:00
parent fb3580efa1
commit 9c643ae9ca
2 changed files with 1 additions and 18 deletions

View File

@ -91,17 +91,6 @@ u32 CALLBACK PS2EgetLibVersion2(u32 type)
///////////////////////////////////////////////////////////////////////////////
// Utility Functions //
void SysMessage(char *fmt, ...)
{
va_list list;
char tmp[512];
va_start(list, fmt);
vsprintf(tmp, fmt, list);
va_end(list);
MessageBox(0, tmp, "cdvdGigaherz Msg", 0);
}
u8 __inline dec_to_bcd(u8 dec)
{
return ((dec / 10) << 4) | (dec % 10);
@ -570,11 +559,6 @@ void CALLBACK CDVDconfigure()
configure();
}
void CALLBACK CDVDabout()
{
SysMessage("%s %d.%d", LibName, revision, build);
}
s32 CALLBACK CDVDtest()
{
return 0;

View File

@ -18,8 +18,7 @@ EXPORTS
CDVDctrlTrayClose @18
CDVDconfigure @19
CDVDtest @20
CDVDabout @21
CDVDnewDiskCB @22
CDVDnewDiskCB @22
CDVDgetBuffer2 @23
CDVDreadSector @24
CDVDgetDualInfo @25