gmanion
November 23rd, 2006, 11:48 PM
Hi, I can call C++ dlls written in VC5 and .NETwith the following declarations...
extern "C" {
__declspec(dllexport) int CallFromAV1( char *lpParam );
__declspec(dllexport) int TestCallBackFromAV1( char *lpParam );
}
How do I do the same from within a C# .NET dll?
Many thanks in advance....
Glenn Manion
GIS R&D Unit.
NPWS, NSW.
Australia
extern "C" {
__declspec(dllexport) int CallFromAV1( char *lpParam );
__declspec(dllexport) int TestCallBackFromAV1( char *lpParam );
}
How do I do the same from within a C# .NET dll?
Many thanks in advance....
Glenn Manion
GIS R&D Unit.
NPWS, NSW.
Australia