Changeset 653 for trunk/src


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/src/kernel32
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • 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.