⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 normaluser.c

📁 M3355的源代码
💻 C
字号:
#include <comsub.h>

#ifdef _KARAOKE_ENABLE_     

extern void UiSubFuncVolumInit_in(void);
void (*ptr_UiSubFuncVolumInit)(void);
void UiSubFuncVolumInit(void)
{
	ptr_UiSubFuncVolumInit=UiSubFuncVolumInit_in;
	(*ptr_UiSubFuncVolumInit)();
}

extern BYTE VolumRespondFPKey_in(DWORD MsgInput);
BYTE (*ptr_VolumRespondFPKey)(DWORD MsgInput);
BYTE VolumRespondFPKey(DWORD MsgInput)
{
	ptr_VolumRespondFPKey=VolumRespondFPKey_in;
	return (*ptr_VolumRespondFPKey)(MsgInput);
}

extern BYTE VolumRespondTimer_in(DWORD MsgInput);
BYTE (*ptr_VolumRespondTimer)(DWORD MsgInput);
BYTE VolumRespondTimer(DWORD MsgInput)
{
	ptr_VolumRespondTimer=VolumRespondTimer_in;
	return (*ptr_VolumRespondTimer)(MsgInput);
}

#endif

extern void InitKara_in(BOOL NeedInitEcho);
void (*ptr_InitKara)(BOOL NeedInitEcho);
void InitKara(BOOL NeedInitEcho)
{
	ptr_InitKara=InitKara_in;
	(*ptr_InitKara)(NeedInitEcho);
}

extern BYTE MappingKokKey_in(BYTE kokType,BYTE value);
BYTE (*ptr_MappingKokKey)(BYTE kokType,BYTE value);
BYTE MappingKokKey(BYTE kokType,BYTE value)
{
	ptr_MappingKokKey=MappingKokKey_in;
	return (*ptr_MappingKokKey)(kokType,value);
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -