Added a warning for DllGetVersion and DllInstall not being declared
private. Also warn when one of the Dll* functions is using a different
internal name.

diff --git a/tools/winebuild/parser.c b/tools/winebuild/parser.c
index 5a60612..cff1930 100644
--- a/tools/winebuild/parser.c
+++ b/tools/winebuild/parser.c
@@ -522,9 +522,14 @@
         if (!strcmp( odp->name, "DllRegisterServer" ) ||
             !strcmp( odp->name, "DllUnregisterServer" ) ||
             !strcmp( odp->name, "DllGetClassObject" ) ||
+            !strcmp( odp->name, "DllGetVersion" ) ||
+            !strcmp( odp->name, "DllInstall" ) ||
             !strcmp( odp->name, "DllCanUnloadNow" ))
         {
             warning( "Function %s should be marked private\n", odp->name );
+            if (strcmp( odp->name, odp->link_name ))
+                warning( "Function %s should not use a different internal name (%s)\n",
+                         odp->name, odp->link_name );
         }
     }