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

Windows编程

开发平台:

Visual C++

  1. // easyclient.cpp
  2. #define _WIN32_DCOM
  3. #import "componentdebugcomponent.dll" no_namespace
  4. #include <iostream.h>
  5. void main()
  6. {
  7. CoInitializeEx(NULL, COINIT_APARTMENTTHREADED);
  8. ISumPtr myRef(__uuidof(InsideCOM));
  9. int result = myRef->Sum(5, 13);
  10. cout << "5 + 13 = " << result << endl;
  11. myRef = NULL;
  12. CoUninitialize();
  13. }