2001-07-29 20:57:33 +00:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
|
|
|
|
#include "fixer.h"
|
|
|
|
|
2001-08-04 15:46:22 +00:00
|
|
|
#include "3dc.h"
|
|
|
|
#include "cdtrackselection.h"
|
|
|
|
|
2001-07-31 04:06:01 +00:00
|
|
|
PROCESSORTYPES ReadProcessorType()
|
|
|
|
{
|
|
|
|
return PType_PentiumMMX;
|
|
|
|
}
|
|
|
|
|
|
|
|
int InitialiseWindowsSystem()
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2001-08-03 05:30:40 +00:00
|
|
|
int ExitWindowsSystem()
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2001-07-29 20:57:33 +00:00
|
|
|
int main(int argc, char *argv[])
|
|
|
|
{
|
2001-08-04 15:46:22 +00:00
|
|
|
LoadCDTrackList();
|
|
|
|
|
2001-07-29 20:57:33 +00:00
|
|
|
return 0;
|
|
|
|
}
|