cdfunc.c
来自「C语言编写的监控中心终端程序。基于GPRS上传收发数据功能」· C语言 代码 · 共 76 行
C
76 行
#include "regmap.h"
#include "config.h"
#include "global.h"
#include "avd.h"
#include "util.h"
#include "func.h"
#include "cd.h"
#include "dsa.h"
#include "cdfunc.h"
int cd_func_speed_init(BYTE speed)
{
speed = 0;
return 0;
}
int cd_func_tray(int func)
{
func = 0;
return 0;
}
int cd_func_stop(void)
{
return 0;
}
int cd_func_playtrack(int trk)
{
trk = 0;
return 0;
}
int cd_func_gotomsf(UINT32 x_msf)
{
x_msf = 0;
return 0;
}
int cd_func_pause(int pause)
{
pause = 0;
return 0;
}
int cd_func_setspeed(int speed)
{
speed = 1;
return 0;
}
UINT32 cd_func_gettime(void)
{
return 0;
}
int cd_func_readtoc(int session)
{
session = 0;
return 0;
}
int cd_func_readlongtoc(int session)
{
session = 0;
return 0;
}
int ReadSessionData(BYTE session)
{
session = 0;
return 0;
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?