📄 client.cpp
字号:
#define _WIN32_DCOM
#include <windows.h>
#include <iostream.h>
#include <stdio.h>
#include <conio.h>
#include "component\component.h"
void main()
{
HRESULT hr;
hr = CoInitializeEx(NULL, COINIT_MULTITHREADED);
if(FAILED(hr))
cout << "CoInitializeEx failed. " << endl;
IPrime* pPrime = 0;
hr = CoCreateInstance(CLSID_InsideCOM, 0, CLSCTX_LOCAL_SERVER, IID_IPrime, (void**)&pPrime);
if(FAILED(hr))
cout << "CoCreateInstance FAILED" << endl;
IPipeLong* pPipeLong = 0;
hr = pPrime->QueryInterface(IID_IPipeLong, (void**)&pPipeLong);
if(FAILED(hr))
cout << "QueryInterface for IPipeLong FAILED" << endl;
ULONG pulled = 0;
long bugger[100000];
hr = pPipeLong->Pull(bugger, 100000, &pulled);
if(FAILED(hr))
cout << "Pull 100 FAILED" << endl;
cout << "pulled " << pulled << endl;
_getch();
for(ULONG count = 0; count < pulled; count++)
cout << bugger[count] << " ";
pPipeLong->Release();
for(int testnumber = 1000000; testnumber < 1001000; testnumber++)
{
int result = 0;
hr = pPrime->IsPrime(testnumber, &result);
if(result)
cout << endl << testnumber << " is prime." << endl;
}
pPrime->Release();
CoUninitialize();
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -