47 lines
689 B
C++
47 lines
689 B
C++
#include <stdio.h>
|
|
|
|
//I hate hacks
|
|
|
|
int realsystemRedShift = 0;
|
|
bool linkenable = false;
|
|
int lspeed = 0;
|
|
|
|
|
|
|
|
void LinkSStop()
|
|
{
|
|
const char *f = __func__;
|
|
printf("Stub Function: %s\n", f);
|
|
}
|
|
|
|
void StartLink(unsigned short)
|
|
{
|
|
const char *f = __func__;
|
|
printf("Stub Function: %s\n", f);
|
|
}
|
|
|
|
void LinkSSend(unsigned short)
|
|
{
|
|
const char *f = __func__;
|
|
printf("Stub Function: %s\n", f);
|
|
}
|
|
|
|
void StartGPLink(unsigned short)
|
|
{
|
|
const char *f = __func__;
|
|
printf("Stub Function: %s\n", f);
|
|
}
|
|
|
|
void StartJOYLink(unsigned short)
|
|
{
|
|
const char *f = __func__;
|
|
printf("Stub Function: %s\n", f);
|
|
}
|
|
|
|
void LinkUpdate(int)
|
|
{
|
|
const char *f = __func__;
|
|
printf("Stub Function: %s\n", f);
|
|
}
|
|
|