Ignore:
Timestamp:
Apr 15, 2000, 12:35:29 AM (25 years ago)
Author:
sandervl
Message:

GetFileAttributes, pe loader & command line fixes

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/kernel32/wprocess.cpp

    r3160 r3375  
    1 /* $Id: wprocess.cpp,v 1.75 2000-03-18 19:49:44 sandervl Exp $ */
     1/* $Id: wprocess.cpp,v 1.76 2000-04-14 22:35:29 sandervl Exp $ */
    22
    33/*
     
    2323#include "winexebase.h"
    2424#include "windllpeldr.h"
    25 #include "winexepe2lx.h"
     25#include "winexepeldr.h"
    2626#include "winfakepeldr.h"
    2727#include <vmutex.h>
     
    423423    module = Win32DllBase::findModule((LPSTR)lpszLibFile);
    424424    if(module) {
    425         if(module->isLxDll() && !module->isLoaded() && !fPe2Lx) {
     425        if(module->isLxDll() && !module->isLoaded() && fPeLoader) {
    426426            //can happen with i.e. wininet
    427427            //wininet depends on wsock32; when the app loads wsock32 afterwards
     
    449449    {
    450450        module = Win32DllBase::findModule(hDll);
    451         if(module && module->isLxDll() && !fPe2Lx) {
     451        if(module && module->isLxDll() && fPeLoader) {
    452452            module->setLoadLibrary();
    453453            module->AddRef();
Note: See TracChangeset for help on using the changeset viewer.