ref: 94202e45023d2d11d7cd88e3ab3366443e246a50
dir: /unix/cd.c/
#include "quakedef.h"
cvar_t bgmvolume = {"bgmvolume", "1", 1};
void
stopcd(void)
{
}
void
pausecd(void)
{
}
void
resumecd(void)
{
}
void
shutcd(void)
{
}
void
stepcd(void)
{
}
void
playcd(int nt, int loop)
{
USED(nt); USED(loop);
}
static void
cdcmd(void)
{
}
int
initcd(void)
{
Cvar_RegisterVariable(&bgmvolume);
Cmd_AddCommand("cd", cdcmd);
return -1;
}