Hans Leidekker : winapi: Remove some exceptions now that DLL separation is complete.

Alexandre Julliard julliard at wine.codeweavers.com
Wed Jan 4 08:42:03 CST 2006


Module: wine
Branch: refs/heads/master
Commit: 578e86a68355ba14bb9a4027f7acbe0ae24932e6
URL:    http://source.winehq.org/git/?p=wine.git;a=commit;h=578e86a68355ba14bb9a4027f7acbe0ae24932e6

Author: Hans Leidekker <hans at it.vu.nl>
Date:   Wed Jan  4 14:49:22 2006 +0100

winapi: Remove some exceptions now that DLL separation is complete.

---

 tools/winapi/winapi_global.pm |    6 +-----
 1 files changed, 1 insertions(+), 5 deletions(-)

diff --git a/tools/winapi/winapi_global.pm b/tools/winapi/winapi_global.pm
index 1986063..63464b2 100644
--- a/tools/winapi/winapi_global.pm
+++ b/tools/winapi/winapi_global.pm
@@ -40,11 +40,7 @@ sub check_modules($$) {
 		foreach my $internal_name ($winapi->all_internal_functions_in_module($module)) {
 		    next if $internal_name =~ /\./;
 		    my $function = $functions->{$internal_name};
-		    if(!defined($function) && !$nativeapi->is_function($internal_name) &&
-               # FIXME: remove these when DLL separation is complete
-               !($module eq "user32" || $module eq "gdi32" || $module eq "kernel32" ||
-                 $module eq "user.exe" || $module eq "keyboard.drv" || $module eq "ddeml" ||
-                 $module eq "gdi.exe" || $module eq "dispdib" || $module eq "krnl386.exe"))
+		    if(!defined($function) && !$nativeapi->is_function($internal_name))
 		    {
 			$output->write("*.c: $module: $internal_name: " .
 				       "function declared but not implemented or declared external\n");




More information about the wine-cvs mailing list