创建win32 app工程
1.h文件
#pragma once
#include "atlcomcli.h"
#import ".xdll.dll" no_namespace named_guids raw_interfaces_only //加载dll
2.cpp文件
根据dll提供的com接口,注意不是导出接口
CoInitialize(NULL);
CComPtr
ClientAPI.CoCreateInstance(CLSID_Client);
HRESULT Ret =ClientAPI->IsClientRun();//调用com接口函数
if(Ret==S_OK)
{
//成功调用
}
3.就写这么多了。有什么疑问,请留言。