|
||||||
| Managed C++ Visual Studio .NET managed C++ Topics |
![]() |
|
|
LinkBack | Thread Tools | Search this Thread | Display Modes |
|
|||
|
I am getting an error in visual basic.net code when calling a function that returns an array of classes from the dll compiled in managed C++
Error: "An unhandled exception of type 'System.Runtime.InteropServices.MarshalDirectiveEx ception' occurred in toolbartest.exe Additional information: Can not marshal return value." ********** C Code: ********** #using <mscorlib.dll> public __gc class gwindow { public: System::Int64 hwnd; System::Int64 ipid; System::String *szWindowText; System::String *szClassText; System::String *szExecFile; }; gwindow *__declspec(dllexport) foo() __gc []; gwindow * wn = new gwindow(); wn->hwnd = (System::Int64)(tempWind->hwnd); wn->ipid = (System::Int64)(tempWind->pid); arr->Add(wn); gwindow *gwindows __gc []; gwindows = static_cast<__gc class gwindow * []>(arr->ToArray(__typeof( __gc class gwindow))); return (gwindows); ************* VB Code: ************* Public Class gwindow Dim hwnd As Int64 Dim ipid As Int64 Dim szWindowText As String Dim szClassText As String Dim szExecFile As String End Class <DllImport("library.dll")> _ Friend Shared Function foo() As gwindow() End Function |
| Sponsored Links |
|
|
![]() |
| Currently Active Users Viewing This Thread: 1 (0 members and 1 guests) | |
| Thread Tools | Search this Thread |
| Display Modes | |
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Inline function | Chinmoy | C Tutorials | 1 | 04-07-2008 03:13 PM |
| function pointer | Chinmoy | C Tutorials | 0 | 03-19-2008 12:52 AM |
| Joomla! Tutorial #3: CSS Class Suffix | takercena | Tutorials, Classes and Code | 1 | 03-14-2008 01:51 PM |
| SecurityAudit | vinay | Visual Basic Programming | 27 | 01-07-2008 12:14 PM |