Ignore:
Timestamp:
Jun 15, 2001, 11:42:49 AM (24 years ago)
Author:
bird
Message:

Corrected Pe2Lx bug in LoadLibrary. Added isPe2LxDLL.

File:
1 edited

Legend:

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

    r3993 r6015  
    1 /* $Id: windllpe2lx.cpp,v 1.8 2000-08-11 10:56:19 sandervl Exp $ */
     1/* $Id: windllpe2lx.cpp,v 1.9 2001-06-15 09:42:48 bird Exp $ */
    22
    33/*
     
    3535#include "console.h"
    3636
    37 #define DBG_LOCALLOG    DBG_windllpe2lx
     37#define DBG_LOCALLOG    DBG_windllpe2lx
    3838#include "dbglocal.h"
    3939
     
    173173}
    174174
     175
     176/**
     177 * Simple question: Pe2Lx DLL? Yes!
     178 * @returns   TRUE.
     179 * @status    completely implemented.
     180 * @author    knut st. osmundsen
     181 */
     182BOOL Win32Pe2LxDll::isPe2LxDll() const
     183{
     184    return TRUE;
     185}
     186
     187
    175188/**
    176189 * Simple question: -Native LX dll?
     
    180193 * @author    Sander van Leeuwen
    181194 */
    182 BOOL Win32Pe2LxDll::isLxDll()
     195BOOL Win32Pe2LxDll::isLxDll() const
    183196{
    184197    return FALSE;
    185198}
    186199
     200
     201
Note: See TracChangeset for help on using the changeset viewer.