2014年4月16日
摘要:
//++其他的头文件 #include "sqlite3.h" #pragma comment(lib,"sqlite3.lib") int GetItemCount(sqlite3 *db,LPCTSTR str)//select count(*) from x ; { sqlite3_stmt *pstmt=NULL; sqlite3_p...
阅读全文
posted @ 2014-04-16 19:52
qinfengxiaoyue
阅读(1172)
推荐(0)
2014年2月11日
摘要:
http://www.cnblogs.com/lfsblack/archive/2012/11/10/2764334.html
阅读全文
posted @ 2014-02-11 13:58
qinfengxiaoyue
阅读(119)
推荐(0)
2014年1月16日
摘要:
参考:http://www.codeproject.com/Articles/178574/Using-PDB-files-and-symbols-to-debug-your-applicat
阅读全文
posted @ 2014-01-16 21:17
qinfengxiaoyue
阅读(488)
推荐(0)
摘要:
更多参考:http://www.embeddedrelated.com/usenet/embedded/show/31646-1.php 一: The calling convention described in this section is the one used by gcc, not the native MIPS compiler, which uses a more compl...
阅读全文
posted @ 2014-01-16 21:08
qinfengxiaoyue
阅读(7051)
推荐(0)
2014年1月15日
摘要:
参考:http://www.cnblogs.com/lhj588/archive/2012/01/06/2314181.html
阅读全文
posted @ 2014-01-15 10:30
qinfengxiaoyue
阅读(142)
推荐(0)
2014年1月14日
摘要:
参考:Windows下安装Django:http://www.th7.cn/Program/Python/201305/136301.shtml
阅读全文
posted @ 2014-01-14 21:02
qinfengxiaoyue
阅读(171)
推荐(0)
2013年12月25日
摘要:
转自:http://www.cppblog.com/weiym/archive/2012/06/10/178287.html。根据自身的经历,觉得作者总结的很好。 思考一个优秀windows C++ 程序员该有哪些知识,可最终发现什么知识都不能少, 看下图: 除了上面知识,程序员还要不断学习, 保持对新知识的热情。
阅读全文
posted @ 2013-12-25 10:00
qinfengxiaoyue
阅读(834)
推荐(1)
2013年12月18日
摘要:
转自:http://blog.csdn.net/arcsinsin/article/details/8126473 内嵌汇编的使用方法是: __asm { 语句 } 你可以把它插入程序中的任何位置,非常灵活。 让我们看一个可以将两个正整数相加的程序: #include using namespace std; void ma...
阅读全文
posted @ 2013-12-18 21:07
qinfengxiaoyue
阅读(4917)
推荐(0)
2013年12月17日
摘要:
http://msdn.microsoft.com/en-us/library/hh851882(v=vs.85).aspx Managing Heap Memory Managing Memory-Mapped Files Managing Virtual Memory
阅读全文
posted @ 2013-12-17 11:01
qinfengxiaoyue
阅读(219)
推荐(0)
2013年12月16日
摘要:
#pragma once #define _CRTDBG_MAP_ALLOC #include #include #include #include #include #include #include #include #ifdef _DEBUG #ifndef DBG_NEW #define DBG_NEW new(_NORMA...
阅读全文
posted @ 2013-12-16 11:14
qinfengxiaoyue
阅读(253)
推荐(0)