-
melpe
MELPe fixed point 2400/1200bps
- 2020-06-25 07:00:02下载
- 积分:1
-
VC++6.0 在程序内注册ActiveX控件的例子源码
VC++6.0 在程序内注册ActiveX控件的例子源码,在程序中动态注册控件到Windows系统中,注册后所依赖该控件的程序才可正常运行。核心代码如下:
//加载ActiveX控件
HINSTANCE hLib = LoadLibrary(lpszDllName);
if (hLib == NULL)
{
TRACE(_T("%s加载失败
"), lpszDllName);
return FALSE;
}
//获得注册函数DllRegisterServer地址
FARPROC lpDllEntryPoint;
lpDllEntryPoint = GetProcAddress(hLib, _T("DllRegisterServer"));
//调用注册函数DllRegisterServer
if (lpDllEntryPoint != NULL)
{
if (FAILED((*lpDllEntryPoint)()))
{
TRACE(_T("调用DllRegisterServer失败
"));
FreeLibrary(hLib);
return FALSE;
}
else
{
FreeLibrary(hLib);
return TRUE;
}
}
else
{
TRACE(_T("调用DllRegisterServer失败
"));
FreeLibrary(hLib);
return FALSE;
}
更多代码请下载本源码包。
- 2022-08-18 20:45:44下载
- 积分:1
-
干涉仪程序
说明: 实现相关干涉仪包括数据产生和鉴相两部分。MATLAB实现。(The realization of correlation interferometer includes two parts: data generation and phase discrimination. Matlab implementation.)
- 2021-04-27 21:18:44下载
- 积分:1
-
adaptive_algorithm
包含常用的LMS,RLS,快速RLS(FTF)等自适应滤波算法,搜集了多种合集,全部为m文件,很有启发,更好理解自适应算法。(Contains the commonly used LMS, RLS, fast RLS (FTF) adaptive filtering algorithm, etc. to collect a wide range of Collection, all for the m file, very enlightening and better understanding of the adaptive algorithm.)
- 2020-12-10 21:09:19下载
- 积分:1
-
pg047-gig-eth-pcs-pma
说明: pg047-gig-eth-pcs-pma
- 2020-06-21 12:00:02下载
- 积分:1
-
thesis
about cognitive radio and network sensing
- 2009-12-16 01:35:46下载
- 积分:1
-
Javachat
聊天软件,用java编写,类似QQ,方便快捷,好用。(Chat software, using java write, similar to QQ, convenient, easy to use.)
- 2009-11-23 13:20:07下载
- 积分:1
-
愤怒的小鸟
说明: 愤怒的小鸟是一款微信小游戏,这是源码,大家可以参考(Angry Birds is a Wechat game, this is the source code, you can refer to)
- 2020-06-20 19:00:02下载
- 积分:1
-
Speech-enhancement-dsp-master
说明: 几种传统的语音增强方法,适合初学者,了解语音增强的处理。(Several traditional speech enhancement methods are suitable for beginners to understand the processing of speech enhancement.)
- 2020-10-08 20:07:35下载
- 积分:1
-
MAX7456_spi
MAX7456 OSD generator IC C code interface using SPI
- 2010-02-11 19:14:34下载
- 积分:1