A
Alex
Hi, everybody,
I found some simple example of writing of a service application in
managed C++. The only thing my service has to do is periodically to
call some COM Server function written in managed C++.
If I had to expose the interface of my COM Server to unmanaged C++, I
could've simply used:
#include <atlbase.h>
#include "MyCOMServer_i.h"
#include "MyCOMServer_i.c"
..................
...................
...................
In C# I believe, I can "Add Reference" ..
So my question is how can I expose functions of unmanaged C++ COM
to the managed C++ application? Or this is not a trivial task?
Thanks,
Alex
I found some simple example of writing of a service application in
managed C++. The only thing my service has to do is periodically to
call some COM Server function written in managed C++.
If I had to expose the interface of my COM Server to unmanaged C++, I
could've simply used:
#include <atlbase.h>
#include "MyCOMServer_i.h"
#include "MyCOMServer_i.c"
..................
...................
...................
In C# I believe, I can "Add Reference" ..
So my question is how can I expose functions of unmanaged C++ COM
to the managed C++ application? Or this is not a trivial task?
Thanks,
Alex