这是一本学习 window编程的很好的参考教材

源代码在线查看: exporingexe.cpp

软件大小: 5535 K
上传用户: ok34090512
关键词: window 编程 教材
下载地址: 免注册下载 普通下载 VIP

相关代码

				#include 
				#define EXPORT __declspec(dllexport)
				typedef void(*FnPtrT)();
				int main()
				{
				 	
					HMODULE hDll = ::LoadLibrary("ImportingDLL.dll");
					if(!hDll)
					{
						MessageBox(NULL,"DLL Not Found : ImportingDLL.dll","From Exe",MB_OK);
					}
					else
						{
							FnPtrT FnPtr = (FnPtrT)::GetProcAddress(hDll,"fnImportingDLL");
							if(FnPtr)
								(*FnPtr)();
							::FreeLibrary(hDll);
						}
					return 0;
				}
				
				extern "C"
				{
					EXPORT void ExeFn(char * lpszMessage)
					{
						MessageBox(NULL,lpszMessage,"From Exe",MB_OK);
					}
				}			

相关资源