CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 2 of 2
  1. #1
    Join Date
    Sep 1999
    Location
    LA, USA
    Posts
    23

    What is the equivalent function in WIN32 for the WIN16 fn: GetModuleUsage%

    What is the equivalent unction in WIN32 for the following WIN16 function:

    Function GetModuleUsage% Lib "Kernel" (ByVal hModule%)


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

    Re: What is the equivalent function in WIN32 for the WIN16 fn: GetModuleUsage%

    AFAIK there is NO equivalent.
    To find out if a module is loaded, use GetModuleHandle or FindWindow.
    To get the count, you'd have to iterate over all modules in all processes using Toolhelp.dll functions.


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