I wasn't surprised when I couldnt find the PB declarations for these as it's hard enough just trying to find information on them with Google and MSDN! But in a future release of Win32api.inc I would like to see support for it
Here is the most complete reference I found:
http://www.cs.uofs.edu/~beidler/Ada/...32-vdmdbg.html
I've got a few of the calls working in VB6 allowing me to enumerate and terminate 16-bit processes (which aren't 'visible' in psapi.dll, even though they are with Win9x ToolHelp):
But I know I'll be using these in PB in a couple of months time - porting what I've made in VB to PB should be easy enough though, but having it in the official Win32api.inc would be nice, thanks 
------------------
Here is the most complete reference I found:
http://www.cs.uofs.edu/~beidler/Ada/...32-vdmdbg.html
I've got a few of the calls working in VB6 allowing me to enumerate and terminate 16-bit processes (which aren't 'visible' in psapi.dll, even though they are with Win9x ToolHelp):
Code:
Public Declare Function VDMEnumProcessWOW Lib "VDMDBG.dll" _ (ByVal fp As Long, lParam As Long) As Integer Public Declare Function VDMTerminateTaskWOW Lib "VDMDBG.dll" _ (ByVal NTVDM As Long, ByVal TaskID As Long) As Integer Public Declare Function VDMEnumTaskWOWEx Lib "VDMDBG.dll " _ (dwProcessId As Long, ByVal fp As Long, lParam As Long) As Integer

------------------
Comment