News:

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

GetNextWindow?

Started by Mark Jones, August 21, 2006, 01:06:12 AM

Previous topic - Next topic

Mark Jones

Hmm, this function doesn't appear to be in user32.inc. MSDN says it's part of Windows.h and USER32.DLL since Win95. The definition should be:


GetNextWindow PROTO :DWORD,:DWORD


"To deny our impulses... foolish; to revel in them, chaos." MCJ 2003.08

hutch--

Mark,

The problem is it does not occur in either user32 or kernel32 DLLs. Its a macro for another API call.
Download site for MASM32      New MASM Forum
https://masm32.com          https://masm32.com/board/index.php

Mark Jones

Aah okay, sheesh I should read the fine print. Been meaning to get some glasses, lol. It is used the in place of GetWindow. I'm very surprised nobody here had mentioned it yet. :wink

What do you think of:


GetNextWindow textequ <GetWindow>
"To deny our impulses... foolish; to revel in them, chaos." MCJ 2003.08