Changeset 10386 for trunk/src


Ignore:
Timestamp:
Jan 12, 2004, 6:27:28 PM (22 years ago)
Author:
sandervl
Message:

compile fix

File:
1 edited

Legend:

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

    r9971 r10386  
    1 /* $Id: winexedummy.cpp,v 1.4 2003-04-02 11:03:32 sandervl Exp $ */
     1/* $Id: winexedummy.cpp,v 1.5 2004-01-12 17:27:28 sandervl Exp $ */
    22
    33/*
     
    2727#include "initterm.h"
    2828
     29static BOOL fIsDummyExe = FALSE;
     30
    2931//******************************************************************************
    3032//Create Dummy Exe object
     
    4143    if(winexe) {
    4244        InitCommandLine(FALSE);
    43             winexe->start();
     45        winexe->start();
     46        fIsDummyExe = TRUE;
    4447    }
    4548    else {
     
    4952    }
    5053    return TRUE;
     54}
     55//******************************************************************************
     56//******************************************************************************
     57BOOL WIN32API IsDummyExeLoaded()
     58{
     59    return fIsDummyExe;
    5160}
    5261//******************************************************************************
Note: See TracChangeset for help on using the changeset viewer.