06 2019 档案
摘要:VS2012下自定义打开文件对话框,MFC的CFileDialog封装了太多,太复杂,绕得头晕,自己封装一个得了 #pragma once #include <objbase.h> #include <commdlg.h> #include "ImagePreviewStatic.h" // XFi
阅读全文
摘要:string与wstring的互相转换接口(Windows版本) std::wstring stringToWstring( const std::string & str ) { LPCSTR pszSrc = str.c_str(); int nLen = MultiByteToWideChar
阅读全文
摘要:base64编解码的两个函数 base64编解码的两个函数,声明,参考网络上的代码实现。 unsigned char *base64_encode(unsigned char *str, long* lpBufLen) { long len; long str_len; unsigned char
阅读全文