News:

MASM32 SDK Description, downloads and other helpful links
MASM32.com New Forum Link
masmforum WebSite

lpdwHandle

Started by Magnum, November 07, 2011, 01:24:20 AM

Previous topic - Next topic

Magnum

I need help in how to make this in my data section.

lpdwHandle
[out] Pointer to a variable that the function sets to zero.
Have a great day,
                         Andy

Gunner

lp == Long Pointer
dw == DWORD so

HandleOut   DWORD ?

and Invoke SomeFunction, offset HandleOut

when you pass the address of a variable, that is called a pointer
~Rob (Gunner)
- IE Zone Editor
- Gunners File Type Editor
http://www.gunnerinc.com

Magnum

Have a great day,
                         Andy

dedndave

dwHandle HANDLE ?

then, lpdwHandle is the address of it
although, i usually use "h"

hHandle HANDLE ?

even better to use some sort of descriptive name

hFileInp HANDLE ?
hFileOut HANDLE ?