Tagged Questions
The p-invoke tag has no wiki summary.
8
votes
3answers
5k views
Best way to access COM objects from C#
I am planning to use various objects that are exposed as COM objects. To make them easier to use, I'd like to wrap them as C# objects. What is the best approach for this?
4
votes
3answers
5k views
How can I pass a pointer to an array using p/invoke in C#?
Example C API signature:
void Func(unsigned char* bytes);
In C, when I want to pass a pointer to an array, I can do:
unsigned char* bytes = new unsigned char[1000];
Func(bytes); // call
How do I ...
3
votes
2answers
326 views
Windows 7 64 bit and accessing Win32 API calls via P/Invoke & Marshal problems
I'm relatively new to .net/C# (though very experienced in Win32 / MFC and other platforms) and need to write a utility to talk to a custom USB HID device. The protocol is pretty simple and I already ...
3
votes
4answers
665 views
Overhead for native interop using only primitive types
I am considering porting a small portion of the code in a C# project of mine to C/ASM for performance benefits. (This section of code uses many bitwise operations and is one of the few places where ...
2
votes
1answer
5k views
How to call “CreateFile” in C#?
After getting so much information about retrieving .MBR from a storage device, conclusion is to use P/Invoke to call CreateFile.
But how this can be done in C#? Please illustrate! Your help will be ...
1
vote
1answer
742 views
How can I pass a reference parameter (&) (not pointer) using p/invoke in C#?
I have a C++ API prototype
void Func(int& size);
How can I translate it to P/Invoke in C#?
From what I know, if I use
public static extern Func(ref int size);
, the function will receive a ...
0
votes
1answer
101 views
Marshal ByRef Variable-Length Array from COM to C#
I am having trouble getting the managed sig correct for this COM interface any suggestions?
MIDL_INTERFACE("6788FAF9-214E-4b85-BA59-266953616E09")
IVdsVolumeMF3 : public IUnknown
{
public:
...
0
votes
0answers
33 views
Process watcher (no wmi)
I want to watch a process in windows 7. I have already done it using WMI, but that is too slow.
Is there P/invoke, or other alternative from which process creation notification can be obtained.
...