Home | Contact Us | FAQ | Search & Site Map | Link to Us
Sign In | Join | Other 45 Sites in Network
HomeAnnouncementsFree MagazinesWhite PapersSubmit Content
Discussion GroupsASP.NETWindows FormsLanguages.NET FrameworkVisual Studio.NET
Articles.NET FrameworkASP.NETToolsWindows Forms
.NET DirectoryOpen Source ProjectsUser GroupsWeb Resources
Related Topics
Visual Basic 6SQL ServerMS AccessOther DB ProductsMS Server ProductsMore Topics ...

.NET Forum / .NET Framework / Interop / September 2004

Tip: Looking for answers? Try searching our database.

P/Invoke and Managed C++

Thread view: 
Enable EMail Alerts  Start New Thread
Thread rating: 
Adlene Sifi - 06 Sep 2004 03:47 GMT
Hello,

I am trying to call a C function from a dll. These function take a pointer
to a structure as a parameter. This structure is allocated into the unmanged
heap by the C function (it uses some malloc). I would like to know the best
way to release this memory . For the moment I have created a new C function
that release the memory and I call it from the managed code. For this to work
I have to keep a pointer to my structure into the native code.

Those are my two functions (from my class):

A )

[DllImport("ArutlManagedBridge.dll",
EntryPoint="GetManagedEnvironment",CharSet=CharSet::Ansi,
CallingConvention=CallingConvention::StdCall)]
           
static System::Int32 GetManagedEnvironment(
[InAttribute,OutAttribute,MarshalAs(UnmanagedType::Struct)]
adsManagedGetEnvironment * GetEnvironment);

B)
[DllImport("ArutlManagedBridge.dll",
EntryPoint="ReleaseEnvironment",CharSet=CharSet::Ansi,
CallingConvention=CallingConvention::StdCall)]

static System::Int32 ReleaseEnvironment();

This is my structure :

[StructLayout(LayoutKind::Sequential, CharSet=CharSet::Ansi)]
public __value struct adsManagedGetEnvironment
{
[MarshalAs(UnmanagedType::ByValArray, SizeConst=2)]
System::Int16        _null __gc[];
System::IntPtr         APXResult;
System::Int32        APXStatus;       
[MarshalAs(UnmanagedType::ByValTStr, SizeConst=512)]
System::String *         APXMessage;       
System::IntPtr         APXSupInfo;           
...
...                           
};   

Thanks a lot

Adlene Sifi
Naveen K Kohli - 07 Sep 2004 17:11 GMT
There is an example at the following link. See if that helps.

http://www.netomatix.com/Development/EmbedStruct.aspx

Naveen Kohli

> Hello,
>
[quoted text clipped - 47 lines]
>
> Adlene Sifi

Free Magazines

Get these publications absolutely FREE for up to 12 months. There are no hidden fees and no obligation. Simply choose a title, complete the application form and submit it. Read more ...

Oracle MagazineNetwork ComputingComputer WorldBio-IT WorldeWeekInformation WeekInfosecurity
 
Sign In
Join
My Latest Posts
My Monitored Threads
My Blog
My Photo Gallery
My Profile
My Homepage

Start New Thread
Enable EMail Alerts
Rate this Thread



©2008 Advenet LLC   Privacy Policy - Terms of Use
This website includes both content owned or controlled by Advenet as well as content owned or controlled by third parties.