Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

19
votes
6answers
2k views

Just what is an IntPtr exactly?

Through using IntelliSense and looking at other people's code, I have come across this IntPtr type; every time it has needed to be used I have simply put null or IntPtr.Zero and found most functions ...
10
votes
5answers
2k views

.NET Interop IntPtr vs. ref

Probably a noob question but interop isn't one of my strong points yet. Aside from limiting the number of overloads is there any reason I should declare my DllImports like: ...
5
votes
3answers
515 views

Which is better/safer to use: HandleRef or IntPtr (newer source code from Microsoft no longer uses HandleRef)

For example, in the old .NET Framework 2.0 Source Code (Windows Forms, Visual Studio 2005 - Whidbey), the GetClientRect function was defined using HandleRef: [DllImport(ExternDll.User32, ...
4
votes
1answer
137 views

Can a Window Handle in .NET change it's value?

During the lifetime of a .NET process, does the handle of a System.Windows.Forms.Form, lets say the main form used in Application.Run(form) actually change it's value, i.e. if using the value of the ...
4
votes
1answer
824 views

How to marshal int* in C#?

I would like to call this method in unmanaged library: void __stdcall GetConstraints( unsigned int* puiMaxWidth, unsigned int* puiMaxHeight, unsigned int* puiMaxBoxes ); My solution: ...
3
votes
2answers
112 views

Win api in C#. Get Hi and low word from IntPtr

I am trying to process a WM_MOUSEMOVE message in C#. What is the proper way to get an X and Y coordinate from lParam which is a type of IntPtr?
3
votes
4answers
567 views

Why / when to use `intptr_t` for type-casting in C?

I'm currently playing around with printing memory addresses in C, and I have a question re: using intptr_t vs. long int. Namely I'm just seeing how incrementing memory addresses (viz, pointer ...
3
votes
4answers
429 views

Proper IntPtr use in C#

I think I understand the use of IntPtr, though I'm really not sure. I copied the IDisposable pattern from MSDN just to see what I could get from it, and while I understand it for the most part, I ...
3
votes
1answer
275 views

IntPtr causing memory leak?

This function is in a loop. When I run the program, the line with IntPtr is giving me memory problems, I've put delete[], but it still doesn't solve the memory problem, can anyone help please? thanks ...
3
votes
4answers
1k views

IntPtr arithmetics

I tried to allocate an array of structs in this way: struct T { int a; int b; } data = Marshal.AllocHGlobal(count*Marshal.SizeOf(typeof(T)); ... I'd like to access to allocated data "binding" ...
2
votes
2answers
89 views

Can't change DEVMODE of a printer

I need to change DEVMODE of printer for current printing task to pass standard and device-specific settings. I do the following: PrintDocument d = new PrintDocument(); d.PrinterSettings.PrinterName = ...
2
votes
1answer
82 views

Can't add an IntPtr and an Int

I have this lines in C# Visual Studio 2010: IntPtr a = new IntPtr(10); IntPtr b = a + 10; And it says: Operator '+' cannot be applied to operands of type 'System.IntPtr' and 'int'. MSDN says ...
2
votes
2answers
175 views

Getting Array of struct from IntPtr

I have some struct like this struct MyStruct { public int field1; public int field2; public int field3; } and I have pointer to array of this struct. So, I need to get array from this ...
2
votes
1answer
49 views

C99: Will arrays or heap-allocated buffers ever end at UINTPTR_MAX?

Can I assume the following invariant? void foo(char *buf, size_t len) { // "buf" points to either an array or memory allocated with malloc(). assert((uintptr_t)(buf + len) < UINTPTR_MAX); } ...
2
votes
1answer
479 views

How to get all memory address space used by a process?

I need to know all memory address space used by a process. The memory space will later be scanned to locate values within the process and identify their locations / addresses. My current process for ...
2
votes
3answers
404 views

DLLImport -> how to handle a HANDLE in C#

in my C# code I want to import a C++ DLL. I use the dllimport and it works fine with a some of the functions. But in one function I get a HANDLE which I need later to call another function. ...
2
votes
2answers
196 views

What are handles for? IntPtr

I have been reading up on IntPtr and have read that it is used to represent a Handle(s). What does this mean exactly? I'm sure it is a simple explanation, but the light bulb is just not turning on at ...
2
votes
1answer
138 views

Is default(IntPtr) legal in an extern function?

Let's say I have the following signature: static extern void External(int foo, IntPtr bar); I want to make it use defaults: static extern void External(int foo = 10, IntPtr bar = default(IntPtr)); ...
2
votes
2answers
3k views

IntPtr to Byte Array and Back

Referencing How to get IntPtr from byte[] in C# I am attempting to read the data that an IntPtr is referencing into a byte [] and then back into another IntPtr. The pointer is referencing an image ...
2
votes
3answers
113 views

How can I avoid creating new wrapper objects all over the place?

I have various classes that wrap an IntPtr. They don't store their own data (other than the pointer), but instead use properties and methods to expose the data at the pointer using an unmanaged ...
2
votes
2answers
1k views

Correct way to marshal SIZE_T*?

I have the following C++ function definition, which I am trying to call through PInvoke from managed code: bool FooBar(SIZE_T* arg1); My managed declaration looked as follows: [DllImport("mydll", ...
2
votes
1answer
7k views

Convert IntPtr to int* in C#?

I have a C++ DLL returning an int* to a C# program. The problem is the int* in C# remains null after the assignment. When I assign the C++ result to an IntPtr, I get a correct non-null value. ...
2
votes
2answers
923 views

How to convert IntPtr/Int to Socket?

I want to convert message.WParam to Socket. protected override void WndProc(ref Message m) { if (m.Msg == Values.MESSAGE_ASYNC) { switch (m.LParam.ToInt32()) ...
1
vote
2answers
40 views

Detemine which DLL allocated IntPtr

I am working on a system that uses IntPtr's returned from two separate C++ DLLs. The unmanaged memory is freed by calling the OBJECT_FREE method presented in each DLL. Unfortunately, some of the ...
1
vote
0answers
345 views

IntPtr to array of struct

I am calling a native API through VB.Net passing a pointer to array of structures (RootCausesInfo) which in turn contains pointer to array of structures (RepairInfoEx). The native signature of the API ...
1
vote
0answers
332 views

Get the process id from a window handle without GetWindowThreadProcessId (c#.net 4.0)

Our application recently switched from .net 3.5 to .net 4. One issue that has cropped up is that GetWindowThreadProcessId no longer works. Microsoft have a hotfix available, but it would be a pain to ...
1
vote
4answers
966 views

How can I get IntPtr pointer from object

I'm working on a finger-print device, the manufacture (Upek) gave me a c++ BSAPI.dll so I need to use wrappers to get this to work in .net. I'm able to work with it all from in-memory, I could grab ...
1
vote
1answer
137 views

Unmanaged code that doesn't run appropriately on 64bit platform

I am using a code which captures a frame from a video which I found in CodeProject The code runs great on 32bit, the problem starts when I try to run on 64bit systems. The exception thrown is ...
1
vote
1answer
134 views

C# Change Properties of another running applications window

If I have a IntPtr of a running program, is there any way to change properties about that window--- for instance properties like: FormBorderStyle, ShowInTaskbar and maybe even BackColor? Im pretty ...
1
vote
0answers
368 views

Get Window Handle from Inspector [closed]

Possible Duplicate: Open Event of Window and Handle of Window Hello all, How do I get a window handle (IntPtr) from the Outlook window I have just opened? OutLook.Items items = ...
1
vote
4answers
535 views

C# how to get Byte[] from IntPtr

I have a .dll(not my own) that has a delegate. This delegate Callback function is: "CallBackFN(ushort opCOde, IntPtr payload, uint size, uint localIP)" How can i convert IntPtr to Byte[]? I think ...
1
vote
6answers
461 views

what is intptr?

I didn't understand what is IntPtr, could someone explain this? thanks
1
vote
4answers
417 views

Dealing with array of IntPtr

I think I'm close and I bet the solution is something stupid. I have a C++ native DLL where I define the following function: DllExport bool __stdcall Open(const char* filePath, int *numFrames, ...
1
vote
3answers
292 views

Is better to allocate/deallocate an IntPtr (AllocHGlobal) each time or preserve it?

I've a situation where I use AllocHGlobal (always of the same size) on a function which I use often (30 times each seconds probably), at the end of the function I call FreeHGlobal Is better if I keep ...
1
vote
1answer
269 views

Interop question about passing a struct by ref, null pointer and IntPtr

Colleagues, Preamble. My question is more about best practices. I know one workaround. This is the first time I have to deal with interop in C#, at the same time I’ve written a fair amount of ...
1
vote
2answers
357 views

C# calling C++ method that returns a pointer. Explain memory management

Can someone explain what exactly is happening at a low level / memory management perspective on the 2 C# lines in "Main" in the following? C++ Code (unmanaged): #define DLLEXPORT extern "C" ...
1
vote
2answers
239 views

Passing a const char* character string from unmanaged to managed

I have two communicating components - one managed, the other unmanaged. The managed needs to retrieve a character string from the unmanaged implementation (the same string or just a copy). I tried the ...
1
vote
3answers
478 views

IntPtr and avoiding unsafe code

I have an external library that takes an IntPtr. Is there any safe way to do this... int BytesWritten = 0; Output.WriteBytes(buffer, new IntPtr(&BytesWritten)); ...without having to use ...
1
vote
3answers
298 views

semi-unmanaged code with c#

public delegate void KeyboardHookCaptureHandler(KeyboardHookEventArgs keyboardEvents); public class KeyboardHookEventArgs : EventArgs { private Keys _pressedKey; private int _pressedKeyCode; ...
1
vote
1answer
398 views

System.IO.UnmanagedMemoryStream - why Byte* instead of IntPtr

Anybody have any idea why the BCL team chose to use Byte* instead of IntPtr in the constructors for UnmanagedMemoryStream? This forces you into using an unsafe context in order to construct the type. ...
1
vote
2answers
205 views

Pointer to function for unmanaged code in C#

I have a dll which accepts a struct that contains a pointer to a function to do a callback. How can I get an IntPtr to a function of my application to build the struct? ...
1
vote
3answers
1k views

IntPtr addition

So from what I can tell, every managed example of IntPtr addition I have found is WRONG. For example: http://www.atalasoft.com/cs/blogs/stevehawley/archive/2006/10/16/10987.aspx My thought being, ...
1
vote
2answers
3k views

How to convert a Bitmap Image to IntPtr in C#?

I made this from an example i saw, it never threw any error, but the image is displayed as grey. Is there a better way to do this? private unsafe void menuItem7_Click(object sender, EventArgs e) ...
1
vote
3answers
947 views

How to “fill” an IntPtr parameter with a float value?

I am using dllImport to use a C library in C# .NET. One of the methods in this library uses data type void* as parameter. I found out, that I can use the data type IntPtr in C# matching the void*. ...
1
vote
1answer
5k views

How to convert an IntPtr back into an object

All, this is a follow up from a previous question here: http://stackoverflow.com/questions/727942/c-formatting-external-dll-function-parameters Here specifically is the code that I am trying to ...
1
vote
3answers
2k views

Helper functions for marshalling arrays of structures (with pointers)

This appears to be the most commonly asked C# interop question and yet seems to be difficult to find a working solution for. I am in need of allocating an array of matrix datastructure in C# passing ...
0
votes
1answer
38 views

error: unknown type name 'intptr_t'

I am receiving this error while compiling a C program in MinGW. As far as I know, I thought 'intptr_t' was a type in the C99 standard. Am I not including a file?
0
votes
1answer
57 views

Followup: Bring a window to the front in WPF

I'm trying to add a button to my current project that when pressed will send the window to the back for x-seconds, allow the user to work in other windows, and then automatically come to the front ...
0
votes
2answers
411 views

Mapping IntPtr into Struct via Marshal.PtrToStructure causing “Access Violation Exception”

I'm trying to use a C++ DLL (3rd party library implementing EMI protocol, having source code available) in .NET. I've succesfully done marshalling, calling the functions and getting everything work ...
0
votes
2answers
83 views

How to get ABPerson from an IntPtr using Monotouch

Is there a way in Monotouch how to get ABPerson object from an IntPtr. I'm using ABPeoplePickerNavigationController and its ABPeoplePickerNavigationControllerDelegate. I have to read some properties ...

1 2