4
votes
1answer
50 views
My application is unmanaged. Where do I start introducing managed code?
My whole application (which is rather big, with a 20MB executable) is written in unmanaged C++.
Because I can clearly see the advantages in using managed code, I want to start introducing managed code …
0
votes
1answer
20 views
C# — Create Managed Array from Pointer
Dear Sirs,
I'm trying to create a Managed Array of doubles from an array of bytes. I have the problem working currently, but I wanted to optimize. Here's some code that I would like to work:
…
0
votes
4answers
65 views
fread speeds managed unmanaged
Ok, so I'm reading a binary file into a char array I've allocated with malloc.
(btw the code here isn't the actual code, I just wrote it on the spot to demonstrate, so any mistakes here are probably …
0
votes
1answer
142 views
What is the future of unmanaged code? [closed]
I'm now intensively digging into WPF, C#..and so on in the MS .NET world.
Please, give your thoughts about the perspectives of using unmanaged code in near future application development. Is the …
4
votes
6answers
75 views
Uniformly handling error codes in an unmanaged API
I'm writing a wrapper around a fairly large unmanaged API. Almost every imported method returns a common error code when it fails. For now, I'm doing this:
ErrorCode result = Api.Method();
if (result …
4
votes
4answers
115 views
C++ internal code reuse: compile everything or share the library / dynamic library?
General question:
For unmanaged C++, what's better for internal code sharing?
Reuse code by sharing the actual source code? OR
Reuse code by sharing the library / dynamic library (+ all the header …
1
vote
1answer
42 views
Best method of calling managed code(c#) from unmanaged C++
Hello,
We have developed a s/w architecture consisting of set of objects developed in C#. They make extensive use of events to notify the client of changes in status, etc.
The intention …
1
vote
3answers
34 views
Marshal.AllocHGlobal VS Marshal.AllocCoTaskMem, Marshal.SizeOf VS sizeof()
Hi.
I have the following struct:
[StructLayout(LayoutKind.Sequential, CharSet = CharSet.Auto)]
public struct WAVEHDR
{
internal IntPtr lpData; // pointer to locked data buffer
internal …
0
votes
4answers
122 views
How do I get \0 off my string from C++ when read in C#
I'm kind of stuck here. I'm developing a custom Pipleline component for Commerce Server 2009, but that has little to do with my problem.
In the setup of the pipe, I give the user a windows form to …
5
votes
4answers
75 views
Pinning an updateble struct before passing to unmanaged code?
Hi
I using some old API and need to pass the a pointer of a struct to unmanaged code that runs asynchronous.
In other words, after i passing the struct pointer to the unmanaged code, the unmanaged …
0
votes
4answers
43 views
howto parse struct to C++ dll from C#
I am trying to call a function in a unmanaged C++ dll.
It has this prototype:
[DllImport("C:\\Program Files\\MySDK\\VSeries.dll", EntryPoint = "BII_Send_Index_Template_MT" )]
internal unsafe …
2
votes
3answers
131 views
Managed C++ to form a bridge between c# and C++
I'm a bit rusty, actually really rusty with my C++. Haven't touched it since Freshman year of college so it's been a while.
Anyway, I'm doing the reverse of what most people do. Calling C# code …
0
votes
1answer
79 views
Sorting a listview (Win32/C++)
I'm trying to sort a listview when the user clicks on the column header.
I am catching the LVN_COLUMNCLICK notification like so:
case LVN_COLUMNCLICK:
{
NMLISTVIEW* pListView = …
1
vote
2answers
46 views
Setting a column style? (Unmanaged c++)
I'm currently able to set a listview style VIA the ListView_SetExtendedListViewStyle method, however this makes all columns have the same style. My goal is to only modify one column (to basically have …
-1
votes
3answers
46 views
Combo box inside of list control? (Unmanaged C++)
I'm using unmanaged C++ and I was wondering if I could embed a combo box inside a column of my List View. I have tried googling for information, however I keep finding C# articles on the subject.
It …
