// 获取文件运行路径void GetAppFilePath(const CString&
strProjectName){ TCHAR szFileName[MAX_PATH]; HMODULE hModule =
GetModuleHandle(strProjectName); ...
分类:
编程语言 时间:
2014-05-30 04:38:22
阅读次数:
367
#include "stdafx.h"#include #include #include
#include #pragma comment(lib, "advapi32.lib")TCHAR szCommand[10];TCHAR
szSvcName[80];SC_HANDLE schSCMana...
std::swap()是个很有用的函数,它可以用来交换两个变量的值,包括用户自定义的类型,只要类型支持copying操作,尤其是在STL中使用的很多,例如:int
main(int argc, _TCHAR* argv[]) { int a[10] = {1,2,3,4,5,6,7,8,...
分类:
编程语言 时间:
2014-05-19 15:22:41
阅读次数:
378
https://github.com/xsmart/onvifcpplib
这个库支持ProfileS 和ProfileG,目前还在开发当中,现在已经支持Event
下面是一个客户端的例子
int _tmain(int argc, _TCHAR* argv[])
{
int ret;
/* 192.168.1.1 is the NVT, 192.168.1.234 is the N...
分类:
编程语言 时间:
2014-05-18 05:26:01
阅读次数:
384
#include
#include
#define MY_STR_LEN 32
#define __MY_FMT_STR(LEN) "%"#LEN"s"
#define MY_FMT_STR(LEN) __MY_FMT_STR(LEN)
int _tmain(int argc, _TCHAR* argv[])
{
char* input = "0123456789abcdef01234...
分类:
其他好文 时间:
2014-05-15 07:18:11
阅读次数:
313
因项目需要采集2个摄像头的数据进行双目检测,一开始采用以下代码来测试:#include
"stdafx.h"#include #include #include int main(int argc, _TCHAR* argv[]){
CvCapture* capture1 = cvCreate...
分类:
其他好文 时间:
2014-05-12 19:37:55
阅读次数:
491
转自http://blog.chinaunix.net/uid-7608308-id-2048125.html简介:这是DWORD及LPCTSTR类型的了解的详细页面,介绍了和类,有关的知识,加入收藏请按键盘ctrl+D,谢谢大家的观看!要查看更多有关信息,请点击此处首先声明,这都是在网上找的资料,...
分类:
其他好文 时间:
2014-05-08 17:36:06
阅读次数:
329
1 #include "windows.h" 2 #include "iostream" 3
#include "stdio.h" 4 5 void StartClone(int nCloneID){ 6 TCHAR
szFilename[MAX_PATH]; 7 GetModu...
分类:
其他好文 时间:
2014-05-08 08:00:45
阅读次数:
441
1.实现boost库xml基本操作2.解决boost对xml中中文乱码问题3.实现普通字符串和宽字符串的傻瓜切换(模仿tchar.h)4.代码运行环境为VS2010,需要导入boost库才能正常运行5.VS2010运行时可能会发生错误。例如:cl.exe
或者 cvtres.exe 报错。 解决办法...
分类:
其他好文 时间:
2014-05-05 22:57:21
阅读次数:
541
#include "stdafx.h"#include "windows.h"#include
using namespace std;int _tmain(int argc, _TCHAR* argv[]){ STARTUPINFO si;
PROCESS_INFORMATION...
分类:
其他好文 时间:
2014-05-05 10:31:18
阅读次数:
412