diff options
author | arpi <arpi@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2001-10-04 00:24:05 +0000 |
---|---|---|
committer | arpi <arpi@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2001-10-04 00:24:05 +0000 |
commit | d60f718c2e4ebc7be2c8eb7fa933eff83bb8570b (patch) | |
tree | fdebcb6ba6b217bba208fa0cd10e3e90b897b7e1 /loader | |
parent | 5473cb012319b78e876a6c96b013db4d346b18db (diff) |
using ldt_keeper instead of setup_fs, includes changed
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@2069 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'loader')
-rw-r--r-- | loader/driver.c | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/loader/driver.c b/loader/driver.c index e7b870402d..f8de9c61ec 100644 --- a/loader/driver.c +++ b/loader/driver.c @@ -8,13 +8,13 @@ #include <sys/time.h> #endif -#include <win32.h> -#include <wine/driver.h> -#include <wine/pe_image.h> -#include <wine/winreg.h> -#include <wine/vfw.h> -#include <registry.h> -#include <setup_FS.h> +#include "win32.h" +#include "wine/driver.h" +#include "wine/pe_image.h" +#include "wine/winreg.h" +#include "wine/vfw.h" +#include "registry.h" +#include "ldt_keeper.h" #include "driver.h" @@ -98,7 +98,7 @@ static NPDRVR DrvAlloc(HDRVR*lpDriver, LPUINT lpDrvResult) static void DrvFree(HDRVR hDriver) { int i; - setup_FS_Segment(); + Setup_FS_Segment(); if(hDriver) if(((DRVR*)hDriver)->hDriverModule) if(((DRVR*)hDriver)->DriverProc) @@ -195,7 +195,7 @@ DrvOpen(LPARAM lParam2) //TRACE("DriverProc == %X\n", npDriver->DriverProc); npDriver->dwDriverID = ++dwDrvID; - setup_FS_Segment(); + Setup_FS_Segment(); STORE_ALL; (npDriver->DriverProc)(0, hDriver, DRV_LOAD, 0, 0); |