搜索资源列表
Codes20060421
- mpst_proj.rar VC++开发的Media Player插件,能够在媒体播放完后自动关机,OnscreenKeyboard_src.zip 在屏幕上显示一个键盘图形,并能显示键盘敲击动作的程序。MatlabEng_src.zip 一个Matlab接口API,可在C++中调用该API来控制Matlab.XMineSweeper_src.zip 微软公司扫雷程序源码.MikesScreenSaver_src.zip 一个使用WinAPI编写的屏幕保护程序.WinMgr_demo.z
C++BuilderWindows
- C++ Builder与Windows API经典范例.-C with the Windows API Builder classic example.
mysql_reference_manual_cn
- MySQL是一个精巧的SQL数据库管理系统,虽然它不是开放源代码的产品,但在某些情况下你可以自由使用。由于它的强大功能、灵活性、丰富的应用编程接口(API)以及精巧的系统结构,受到了广大自由软件爱好者甚至是商业软件用户的青睐,特别是与Apache和PHP/PERL结合,为建立基于数据库的动态网站提供了强大动力。 MySQL有瑞典的T.c.X公司负责开发和维护,MySQL的用户手册很单纯,只有一个集中的<MySQL Reference Manual>,但其内容覆盖了MySQL
hwSOAPmy
- 收SP下行消息 A. 启动MMSC侦听端口 在模拟器界面的右下角的\"Liten Port\"文本框中输入MMSC的侦听端口,这个值是为接收SP发出的下行消息提供服务的端口号,比如:\"8080\",按下\"Start\"按钮启动MMSC侦听服务。 B. 接收消息 接收的是从SP(API)发来的消息,处理后回一条响应消息。 2 模拟MMSC向SP发送上行消息 A. 选择模拟器左边界面的MessageType为“DeliverReq”; B. “Send To”文
MSCOMM
- mscomm的控件,基于VB,C++ 或API的控件。
svm-python
- This document contains a general overview in the first few sections as well as a more detailed reference in later sections for SVMpython. If you re already familiar with SVMpython, it s possible to get a pretty good idea of how to use the package mer
matlab_cpp
- Solving Engineering Problems Using MATLAB C++ Math Library Introduction In the previous article, we studied how can use MATLAB C API to solve engineering problems. In this article I will show you how can use MATLAB C++ math library. The MATLAB®
MATLAB_C_API
- As all of you know, MATLAB is a powerful engineering language. Because of some limitation, some tasks take very long time to proceed. Also MATLAB is an interpreter not a compiler. For this reason, executing a MATLAB program (m file) is time consuming
MatlabSharedLib_demo
- Introduction Some times it is required that we build a shared library (DLL) from an m-file. M-files are functions that are written in Matlab editor and can be used from Matlab command prompt. In m-files, we employ Matlab built-in functions or toolb
audioREC2
- 我是C++的初学者,入门都要靠VCKBASE,好在里面有很多适合于初学者的例子,让我少走了很多弯路,为了回馈大家,我也把我最近刚完成的一个简单的小程序提供给大家,让那些曾经和我一样徘徊在C++大门之外的人能快些掌握要领,大家不妨看一看。 本文以VC知识库第26期 栾义明 先生的《基于API的录音机程序》为基础的,在此深表感谢!
winSocketTestApp
- WinSock Win32 API 的打包类和例子程序 < WinSock > winSocket/winSocketEx: 如果你正在Windows环境中用C++编写TCP/IP网络程序,那么使用这个打包类吧,我想它不会让你失望的。winSocket几乎封装了编写TCP/IP网络应用程序所需的所有内容,winSocketEx加入了对SOCKS 4/5代理服务器的支持。使得在自己的程序中加入代理支持易如反掌。这个打包类支持的特性包括:Connect、Send、Rece
music
- 用C语言播放音乐文件,调用API函数.链接时要指定库文件。VC++是vfw32.lib, GCC是libvfw32.a.
AVL树实现
- 纯C实现的AVL树,Demo是MFC的。非递归的遍历,完全支持添加、删除和搜索节点。设计灵活,容易扩展。以下是API struct tagAvlTree; typedef struct tagAvlTree AvlTree; struct tagAvlNode; typedef struct tagAvlNode AvlNode; struct tagAvlNode { AvlNode *left; AvlNode *right; int32_t height;