vbclient.cpp
上传用户:bjlvip
上传日期:2010-02-08
资源大小:744k
文件大小:0k
源码类别:

Windows编程

开发平台:

Visual C++

  1. // vbclient.cpp
  2. #import "c:Inside COM+ Base ServicesLanguage IntegrationVBComponent.dll" no_namespace
  3. #import "c:Inside COM+ Base ServicesLanguage Integrationcomponentdebugcomponent.dll" no_namespace
  4. #include <iostream.h>
  5. void main()
  6. {
  7. int result;
  8. CoInitialize(NULL);
  9. ISumPtr myRef(__uuidof(VBInsideCOM));
  10. result = myRef->Sum(5, 13);
  11. cout << "5 + 13 = " << result << endl;
  12. myRef = NULL;
  13. CoUninitialize();
  14. }