MS C、STL、MFC对Windows Mobile开发的支持
MS C、STL、MFC对Windows Mobile开发的支持
所有资料来自MSDN
--------------------------------------------------------------------------------
1.Mobile支持的Microsoft C
wcsncpy_s
wcscpy_s
wcscat_s
strncpy_s
strcpy_s
strcat_s
memmove_s
memcpy_s
_wsplitpath_s
_wmakepath_s
_ultoa_s
_ui64tow_s
_ui64toa_s
_ltoa_s
_localtime64_s
_itow_s
_itoa_s
_i64tow_s
_i64toa_s
_gmtime64_s
--------------------------------------------------------------------------------
2.STL
标准 C++ 库的Mobile设备版本是完整的 Standard C++ Library Reference 的子集。
标准 C++ 库的Mobile设备版本不支持下列标头:
<cerrno>
<csignal>
<locale>
--------------------------------------------------------------------------------
3.Mobile唯一拥有的MFC类
CCommandBar 类
结合菜单栏和工具栏的功能,且专为具有小显示屏的设备而设计。
CDocList 类
将 DocList 窗口类型的操作系统实现以及将与 MFC 文档/视图结构集成的其他功能包装在一起。
CDocListDocTemplate 类
SDI 应用程序类型的优化,由 CSingleDocTemplate 帮助实现。
--------------------------------------------------------------------------------
4.Mobile不支持的MFC类
CAnimateCtrl Class
CAsyncMonikerFile Class
CBitmapButton Class
CByteArray Class
CCachedDataPathProperty Class
CCheckListBox Class
CColorDialog Class
CComboBoxEx Class
CDaoDatabase Class
CDaoException Class
CDaoFieldExchange Class
CDaoQueryDef Class
CDaoRecordset Class
CDaoRecordView Class
CDaoTableDef Class
CDaoWorkspace Class
CDatabase Class
CDataPathProperty Class
CDBException Class
CDBVariant Class
CDHtmlDialog Class
CDialogBar Class
CDocItem Class
CDockState Class
CDocObjectServer Class
CDocObjectServerItem Class
CDragListBox Class
CDumpContext Class
CDWordArray Class
CEditView Class
CFieldExchange Class
CFileFind Class
CFindReplaceDialog Class
CFontDialog Class
CFtpConnection Class
CFtpFileFind Class
CGopherConnection Class
CGopherFile Class
CGoph
相关文档:
仅供学习使用:
/*********************************************
* Name : prime.c
* Purpose : prime (素数判断)
* Author : zimo
* Date : 01/21/2010
* ******************************************/
#include<stdio.h>
int main()
{
int m , n ;
& ......
C/C++中结构体(struct)知识点强化(三)
出处:PConline 2005年03月07日 作者:管宁 责任编辑:xietaoming
我们以上面的程序为基础,但为了我们方便学习删除我们休整结构体为
struct test
{
int number;
float socre;
test *next;
};
number为唯一的编号每一个节点的。
删除的我就不多说了 ......
你说是写个动态库不就行了,还说写脚本,脚本跟动态库差别大去了
gcc编译的时候就能生成动态连接库
windows下面没有so的概念,windows叫dll
搜下Linux gcc 动态库
编写好c语言程序,就是file系统调用的几个函数,fopen,fread之类的
gcc编译成so文件,一个命令就搞定,我忘记具体的选项了 ......
其实VIM也能把编译 调试集成在一起,像是一个IDE一样。
首先现在VIM的源码,因为要集成调试环境的话需要重新编译VIM才行,所以我们不如重新安装一个。
VIM的现在地址:
http://www.vim.org/sources.php
然后下载VIMGDB,这是vim的集成调试环境的一个重要插件程序。
地址:http://sourceforge.net/projects/clewn/files ......
原文:http://blog.csdn.net/jackyvan/archive/2010/01/15/5193693.aspx
其实VIM也能把编译 调试集成在一起,像是一个IDE一样。
首先现在VIM的源码,因为要集成调试环境的话需要重新编译VIM才行,所以我们不如重新安装一个。
VIM的现在地址:
http://www.vim.org/sources.php
然后下载VIMGDB,这是vim的集成调试环境的 ......