What is the equivalent unction in WIN32 for the following WIN16 function:
Function GetModuleUsage% Lib "Kernel" (ByVal hModule%)
What is the equivalent unction in WIN32 for the following WIN16 function:
Function GetModuleUsage% Lib "Kernel" (ByVal hModule%)
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.