How can i delivery unmanaged struct as pointer of method parameter to my managed component?

R

Ryu, Kyoung-Seok

I read brilliant ManWrap Lib article in MSDN Mag
(http://msdn.microsoft.com/msdnmag/issues/05/04/C/default.aspx)

I'm making Internet Authenticatioin Server Extension DLL

This DLL must be only Win32 DLL and I trying to use your ManWrap Lib as my
dotnet component adapter layer



My Question is how can i deliever the C++ struct pointer parameter to my
DotNET Component


Internet Authenticaion Server calls following function
"RadiusExtensionProcess2"

I want to deliver RADIUS_EXTENSION_CONTROL_BLOCK struct pointer parameter to
my dotnet component

DWORD WINAPI RadiusExtensionProcess2(
PRADIUS_EXTENSION_CONTROL_BLOCK pECB
);

http://msdn.microsoft.com/library/en-us/ias/ias/radiusextensionprocessex.asp?frame=true



I thank you in advance for your help
 
G

Guest

Ryu said:
I read brilliant ManWrap Lib article in MSDN Mag
(http://msdn.microsoft.com/msdnmag/issues/05/04/C/default.aspx)

I'm making Internet Authenticatioin Server Extension DLL

This DLL must be only Win32 DLL and I trying to use your ManWrap Lib as my
dotnet component adapter layer



My Question is how can i deliever the C++ struct pointer parameter to my
DotNET Component


Internet Authenticaion Server calls following function
"RadiusExtensionProcess2"

I want to deliver RADIUS_EXTENSION_CONTROL_BLOCK struct pointer parameter to
my dotnet component

DWORD WINAPI RadiusExtensionProcess2(
PRADIUS_EXTENSION_CONTROL_BLOCK pECB
);

http://msdn.microsoft.com/library/en-us/ias/ias/radiusextensionprocessex.asp?frame=true



I thank you in advance for your help
Check out this link.
http://msdn2.microsoft.com/library/ef4c3t39(en-us,vs.80).aspx
Thanks,
Kapil
 
Top