码迷,mamicode.com
首页 >  
搜索关键字:tchar    ( 2435个结果
VC++常用函数
// 获取文件运行路径void GetAppFilePath(const CString& strProjectName){ TCHAR szFileName[MAX_PATH]; HMODULE hModule = GetModuleHandle(strProjectName); ...
分类:编程语言   时间:2014-05-30 04:38:22    阅读次数:367
windows服务控制(开启/停止已有服务)
#include "stdafx.h"#include #include #include #include #pragma comment(lib, "advapi32.lib")TCHAR szCommand[10];TCHAR szSvcName[80];SC_HANDLE schSCMana...
分类:Windows程序   时间:2014-05-26 07:58:05    阅读次数:420
《Effective C++》item25:考虑写出一个不抛异常的swap函数
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
一个基于Gsoap 的ONIVF C++ 库
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
char,wchar_t,WCHAR,TCHAR,ACHAR的区别----LPCTSTR
转自http://blog.chinaunix.net/uid-7608308-id-2048125.html简介:这是DWORD及LPCTSTR类型的了解的详细页面,介绍了和类,有关的知识,加入收藏请按键盘ctrl+D,谢谢大家的观看!要查看更多有关信息,请点击此处首先声明,这都是在网上找的资料,...
分类:其他好文   时间:2014-05-08 17:36:06    阅读次数:329
Thread create 创建进程
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
boost::xml——基本操作以及中文乱码解决方案
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
createprocess并行运算
#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
2435条   上一页 1 ... 241 242 243 244 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!