Changeset 653


Ignore:
Timestamp:
Aug 23, 1999, 8:06:45 PM (26 years ago)
Author:
sandervl
Message:

Stupid compiler; if you don't like virtual inline methods, then complain..

Location:
trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/include/windll.h

    r651 r653  
    1 /* $Id: windll.h,v 1.6 1999-08-23 17:04:14 sandervl Exp $ */
     1/* $Id: windll.h,v 1.7 1999-08-23 18:06:45 sandervl Exp $ */
    22
    33/*
     
    8181
    8282
    83 virtual BOOL  isDll()                          { return FALSE; };
     83virtual BOOL  isDll();
    8484
    8585protected:
  • trunk/include/winexe.h

    r651 r653  
    1 /* $Id: winexe.h,v 1.5 1999-08-23 17:04:14 sandervl Exp $ */
     1/* $Id: winexe.h,v 1.6 1999-08-23 18:06:45 sandervl Exp $ */
    22
    33/*
     
    3737virtual ULONG start();
    3838
    39 virtual BOOL  isDll()                          { return FALSE; };
     39virtual BOOL  isDll();
    4040       
    4141protected:
  • trunk/src/kernel32/windll.cpp

    r651 r653  
    1 /* $Id: windll.cpp,v 1.14 1999-08-23 17:02:35 sandervl Exp $ */
     1/* $Id: windll.cpp,v 1.15 1999-08-23 18:06:26 sandervl Exp $ */
    22
    33/*
     
    8181  dprintf(("Win32Dll::Win32Dll %s %s loaded by %s", szFileName, szModule,
    8282          (parentImage) ? parentImage->getModuleName() : "Unknown"));
     83
    8384}
    8485//******************************************************************************
     
    549550//******************************************************************************
    550551//******************************************************************************
     552BOOL Win32Dll::isDll()
     553{
     554  return TRUE;
     555}
     556//******************************************************************************
     557//******************************************************************************
    551558Win32Dll *Win32Dll::head = NULL;
  • trunk/src/kernel32/winexe.cpp

    r617 r653  
    1 /* $Id: winexe.cpp,v 1.10 1999-08-22 11:11:11 sandervl Exp $ */
     1/* $Id: winexe.cpp,v 1.11 1999-08-23 18:06:27 sandervl Exp $ */
    22
    33/*
     
    116116//******************************************************************************
    117117//******************************************************************************
    118 
     118BOOL Win32Exe::isDll()
     119{
     120  return FALSE;
     121}
     122//******************************************************************************
     123//******************************************************************************
Note: See TracChangeset for help on using the changeset viewer.