随笔分类 - C++总结
摘要:https://www.npmjs.com/ js库
阅读全文
摘要:git branch test git checkout test git push origin test:test git branch --set-upstream-to origin/test git branch -a delete local/origin 分支 git checkout master git branch -d branchname git branch -r ...
阅读全文
摘要:类 型 MBCS UNICODE TCHAR char char WCHAR wchar_t wchar_t LPSTR char* char* LPCSTR const char* const char* LPWSTR wchar_t* wchar_t* LPCWSTR const wchar_t* const wchar_t* ...
阅读全文
摘要:经常碰到程序无法卸载, 就老是骂微软搞的什么安装方式,安装好了不能卸载. 后来就打算研究一下windows是如何卸载程序的,一个程序安装完后留下了什么信息用于后面的卸载. 研究对象win7 64位, 程序npviewinie. 程序安装后生成的最主要的注册表项是在以下三个中 HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVers...
阅读全文
摘要:#include #include #pragma comment(lib, "Msi.lib") bool CheckExistSoftware(wchar_t *upgradeCode) //可以通过工具Orca查看安装包相应的upgradeCode { wchar_t productCode[39]; if (ERROR_SUCCESS ==...
阅读全文
摘要:#include #include #include using namespace std; int main() { char sourcename[80],destname[80],buffer[256]; int n; cout>sourcename; cout>destname; ifstream i...
阅读全文
摘要:https://www.manualslib.com/manual/288056/Kodak-Ngenuity-9090db.html?page=55#manual
阅读全文
摘要:#include <afxinet.h>#include "wininet.h"
阅读全文
摘要:bool CWizardSheet::GetTextResource(UINT uID, CString& csContent) { HMODULE hModule=GetModuleHandle(NULL); HRSRC hRes = FindResource(hModule,MAKEINTRESOURCE(uID),_T("txt")); if(...
阅读全文
摘要:3.7.37 ICAP_SUPPORTEDSIZESType:TW_UINT16Supported Messages:MSG_GET - TW_ENUMERATIONMSG_GETCURRENT - TW_ONEVALUEMSG_GETDEFAULT - TW_ONEVALUEMSG_RESET – TW_ONEVALUEMSG_SET – TW_ONEVALUE, TW_ENUMERATION...
阅读全文
摘要:http://git.oschina.net/ https://coding.net/
阅读全文
摘要:http://www.verypdf.com/pdf2tif/pdf-to-image/help.htm http://www.softinterface.com/DL/DL_Alternate_Download_Site2.htm http://www.morethantechnical.com/
阅读全文
摘要:char* WcharToChar(const wchar_t* wp) { char *m_char; int len = WideCharToMultiByte(CP_ACP, 0, wp, wcslen(wp), NULL, 0, NULL, NULL); m_char = new char[len + 1]; WideCharToMultiByte(CP_ACP, 0, wp, ...
阅读全文
摘要:BOOL CheckServerStatus::isConnectServer(CString serverName, int serverPort) { CString strURL; strURL.Format("http://%s:%d", serverName, serverPort); BOOL hSession = GetSession(strURL); return hSe...
阅读全文
摘要:保存文件路径选择
阅读全文
摘要:CRect rect; CWnd *pWnd = GetDlgItem(IDC_STATIC_PIC); pWnd->GetWindowRect(&rect); ScreenToClient(&rect); //先获取鼠标相对于屏幕的坐标 GetCursorPos(&point); //然后得到static控件的rect坐标 CRect pRect; pWnd->GetClientRe...
阅读全文
摘要:/* 回调函数的格式如下: int sqlite_callback( void* pv, //由 sqlite3_exec() 的第四个参数传递而来 int argc, //表的列数 char** argv, //指向查询结果的指针数组, 可以由 sqlite3_column_text() 得到 char** col //指向表头名的...
阅读全文
摘要:1、#include 2、在需要开启控制台窗口的地方调用 AllocConsole();//注意检查返回值 3、在需要输出调试的时候调用_cprintf等函数 如_cprintf("i=%d\n", i); 4、关闭控制台的时候调用 FreeConsole(); 注意:上述方法在输出中文时会出现乱码,如果需要输出中文,请使用下面的方法: AllocConsole(); freopen(...
阅读全文
摘要:memcpy(predata,frame,1920*1080*4);
阅读全文