CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 3 of 3
  1. #1
    Guest

    Did anyone know the VB-Syntax for the VDMEnumTaskWOW function???

    Hello,

    in some MSDN article they speak from the VDMEnumTaskWOW function, but nowhere is the declaration in VB Code!

    Did anyone know where can i find it???

    Thx!


  2. #2
    Join Date
    May 1999
    Posts
    3,332

    Re: Did anyone know the VB-Syntax for the VDMEnumTaskWOW function???

    since it is declared a
    INT
    WINAPI
    VDMEnumTaskWOW(
    DWORD dwProcessId,
    TASKENUMPROC fp,
    LPARAM lparam
    );

    the VB declare should probably look like this:

    Declare function VDMEnumTaskWOW lib "Vdmdbg.dll" ( byval pid as long, byval a as long, byval lparam as long) as long





  3. #3
    Guest

    Re: Did anyone know the VB-Syntax for the VDMEnumTaskWOW function???

    Thx,

    but in the MSDN article "Howto: use vdmdbg Functions on Windows NT" says under "Terminating 16-Bit Tasks", that I need for the VDMTerminateTaskWOW function the variable hTask.

    Further it says i become the hTask from the VDMEnumTaskWOW, but where can I find it in your Declare Function???

    And what is the variable "a"????




Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured