Added Module32* stubs.
diff --git a/misc/toolhelp.c b/misc/toolhelp.c
index 8541336..0455d9b 100644
--- a/misc/toolhelp.c
+++ b/misc/toolhelp.c
@@ -187,3 +187,25 @@
{
return TOOLHELP_Process32Next( hSnapshot, lppe, FALSE );
}
+
+/***********************************************************************
+ * Module32First (KERNEL32.527)
+ *
+ * Return info about the "first" module in a toolhelp32 snapshot
+ */
+BOOL WINAPI Module32First(HANDLE hSnapshot, LPMODULEENTRY lpme)
+{
+ FIXME(toolhelp,"(%d,%p),stub!\n",hSnapshot,lpme);
+ return FALSE;
+}
+
+/***********************************************************************
+ * Module32Next (KERNEL32.528)
+ *
+ * Return info about the "next" module in a toolhelp32 snapshot
+ */
+BOOL WINAPI Module32Next(HANDLE hSnapshot, LPMODULEENTRY lpme)
+{
+ FIXME(toolhelp,"(%d,%p),stub!\n",hSnapshot,lpme);
+ return FALSE;
+}