win32 api
时间:2014-07-03 23:50:47
收藏:0
阅读:552
Microsoft在StrSafe.h定义了新的安全字符串函数
为了防止缓冲区溢出,在将一个可写缓冲区作为参数传递时,必须传递它的大小,大小可以有_countof获得,
_countof获取字符数, sizeof获取字节数
for example:
int a[10]; // _countof(a) == 10
_CrtSetReportMode(_CRT_ASSERT, 0); // in head of program
可以禁止C run time可能触发的debug assertion failed dialog.
windows提供的字符串比较函数
CompareString(Ex) // 比较最终用户能看到的字符串
CompareStringOrdinal // 比较内部字符串,比如注册表,xml元素,路径
windows提供new/delete
HeapAlloc / HeapFree
IsTextUnicode能够通过一系列统计性和确定性的方法判断文本文件是unicode字符还是ansi字符,但不一定准确
评论(0)