VS2005建立智慧型裝置DLL

2021-05-22 22:08:13 字數 610 閱讀 1971

1、檔案=新建=其他語言=visual c++=智慧型裝置==win32智慧型裝置專案

2、輸入名稱dll

3、平台 選中要支援的智慧型裝置sdk,這裡選擇wm5/wm6

4、應用程式型別 選擇dll專案

5、新建.h和.cpp檔案

**如下:

.h#ifndef dll_test_h

#define dll_test_h

extern "c" __declspec(dllexport) int add(int x,int y);

#endif

.cpp

#include

#include

#include ".h"

int _stdcall add(int a,int b)

dll.cpp

#include

#include

#include ".h"

bool apientry dllmain( handle hmodule,

dword  ul_reason_for_call,

lpvoid lpreserved

)6、解決方案平台選擇wm5或wm6;啟動生成dll

VS2005建立智慧型裝置專案失敗

一 visual studio 2005與 ie8 衝突的解決辦法 1 執行 regedit 登錄檔編輯器 2 找到 hkey current user software microsoft windows currentversion internetsettings zones 3 在zones...

vs2005建立頁面的主題

建立頁面的主題 1.建立乙個新的目錄 在你的 注意你的目錄必須命名為 2.建立乙個子目錄在你的 下去裝載你的主題檔案。例如建立乙個 bluetheme 目錄3.新增檔案到你子目錄下。例如新增 button.skin4.在 button.skin 裡寫如下語句 asp button runat ser...

VS2005使用DEF檔案來生成DLL與Lib

vs2005使用def檔案來生成dll與lib時,與vc6的設定是不一樣 的,搞的我鬱悶一下午.還好總算解決了 vc6工程中,只要有def檔案並將其新增到工程中,vc6就可以自動地生成dll與其相應的lib檔案了。但是vs2005不一樣,需要指定def檔案,方法如下 把 desdll.def 新增到...