From e70d08be3183a79213169a45c35c18b212124730 Mon Sep 17 00:00:00 2001
From: "Dimitrie O. Paun" <dpaun@rogers.com>
Date: Wed, 25 Sep 2002 00:16:52 +0000
Subject: [PATCH] By default, we should use our own dlls.

---
 documentation/samples/config | 26 ++------------------------
 loader/loadorder.c           |  2 +-
 2 files changed, 3 insertions(+), 25 deletions(-)

diff --git a/documentation/samples/config b/documentation/samples/config
index 3174b4f7531..2b2edd264e2 100644
--- a/documentation/samples/config
+++ b/documentation/samples/config
@@ -78,46 +78,24 @@ WINE REGISTRY Version 2
 ; Be careful here, wrong DllOverrides settings have the potential
 ; to pretty much kill your setup.
 [DllOverrides]
-"rpcrt4"       = "builtin, native"
+; some dlls you may want to change
 "oleaut32"     = "builtin, native"
 "ole32"        = "builtin, native"
 "commdlg"      = "builtin, native"
 "comdlg32"     = "builtin, native"
-"ver"          = "builtin, native"
-"version"      = "builtin, native"
 "shell"        = "builtin, native"
 "shell32"      = "builtin, native"
 "shfolder"     = "builtin, native"
 "shlwapi"      = "builtin, native"
 "shdocvw"      = "builtin, native"
-"lzexpand"     = "builtin, native"
-"lz32"         = "builtin, native"
-"comctl32"     = "builtin, native"
-"commctrl"     = "builtin, native"
 "advapi32"     = "builtin, native"
-"crtdll"       = "builtin, native"
-"mpr"          = "builtin, native"
-"winspool.drv" = "builtin, native"
-"ddraw"        = "builtin, native"
-"dinput"       = "builtin, native"
-"dsound"       = "builtin, native"
-"opengl32"     = "builtin, native"
 "msvcrt"       = "native, builtin"
-"msvideo"      = "builtin, native"
-"msvfw32"      = "builtin, native"
-"mcicda.drv"   = "builtin, native"
-"mciseq.drv"   = "builtin, native"
-"mciwave.drv"  = "builtin, native"
 "mciavi.drv"   = "native, builtin"
 "mcianim.drv"  = "native, builtin"
-"msacm.drv"    = "builtin, native"
-"msacm"        = "builtin, native"
-"msacm32"      = "builtin, native"
-"midimap.drv"  = "builtin, native"
 ; you can specify applications too
 "notepad.exe"  = "native, builtin"
 ; default for all other dlls
-"*" = "native, builtin"
+"*" = "builtin, native"
 
 [x11drv]
 ; Number of colors to allocate from the system palette
diff --git a/loader/loadorder.c b/loader/loadorder.c
index 0e587a9e2c7..6b3f768ed4c 100644
--- a/loader/loadorder.c
+++ b/loader/loadorder.c
@@ -98,7 +98,7 @@ static const struct loadorder_list default_list =
 /* default if nothing else specified */
 static const enum loadorder_type default_loadorder[LOADORDER_NTYPES] =
 {
-    LOADORDER_DLL, LOADORDER_BI, 0, 0
+    LOADORDER_BI, LOADORDER_DLL, 0, 0
 };
 
 static struct loadorder_list cmdline_list;
-- 
GitLab