2.在專案選單中,選擇新增新項。或者直接按ctrl+shift+a新增乙個c++檔案,並命名為setup
在檔案中輸入下面**:
int apientry winmain(hinstance hinstance,
hinstance hprevinstance,
lpstr lpcmdline,
int ncmdshow)
//2.取自身的路徑
tchar szpath[max_path];
getmodulefilename(null, szpath, max_path-1);
tchar tmppath[max_path];
//轉換成ini檔名
#if _unicode
int ilen = wcslen(szpath);//
#else
int ilen = strlen(szpath);
#endif
#if _unicode
wcscpy(&szpath[ilen-3], _t("ini"));
wsprintf(tmppath,_t("/"%s/""),szpath);//注意加"號
wcscpy(szpath,tmppath);
#else
strcpy(&szpath[ilen-3], _t("ini"));
sprintf(tmppath,_t("/"%s/""),szpath);
strcpy(szpath,tmppath);
#endif
execinfo.lpfile = szexe;
execinfo.lpparameters = szpath;
execinfo.nshow = sw_show;
pc端WINCE的安裝包
2 在專案選單中,選擇新增新項。或者直接按ctrl shift a新增乙個c 檔案,並命名為setup 在檔案中輸入下面 int apientry winmain hinstance hinstance,hinstance hprevinstance,lpstr lpcmdline,int ncmd...
如何製作wince中的cab安裝包
最近因為工作的需要,把公司的產品打包到ppc上面去安裝,以前都是手動cpoy到指定的目錄下的。累!把自己的心得寫出來。其實做起來很簡單,你需要一下幾個問題 makecab.exe cabwiz.exe,還有乙個inf檔案,前兩個在你安裝的sdk裡面都能找的到,art phone 和ppc的都有,能不...
mysql安裝包安裝 mysql安裝包安裝
centos7.4在無網環境下的mysql簡易安裝,使用tar包安裝mysql。使用的資源 上傳解壓 使用xftp上傳 解壓mysql 5.7.28 el7 x86 64.tar.gz 重新命名,方便配置環境變數 cd usr mv mysql 5.7.28 el7 x86 64 mysql 配置環...