Ignore:
Timestamp:
Sep 18, 1999, 7:47:10 PM (26 years ago)
Author:
sandervl
Message:

Changes for LX image resource support

File:
1 edited

Legend:

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

    r956 r978  
    1 /* $Id: winexelx.cpp,v 1.1 1999-09-15 23:39:07 sandervl Exp $ */
     1/* $Id: winexelx.cpp,v 1.2 1999-09-18 17:47:10 sandervl Exp $ */
    22
    33/*
     
    3636//System dlls set EntryPoint to 0
    3737//******************************************************************************
    38 BOOL WIN32API RegisterLxExe(WINMAIN EntryPoint, PVOID unused)
     38BOOL WIN32API RegisterLxExe(WINMAIN EntryPoint, PVOID pResData)
    3939{
    4040 APIRET  rc;
     
    5656  Win32LxExe *winexe;
    5757
    58   winexe = new Win32LxExe(ppib->pib_hmte);
     58  winexe = new Win32LxExe(ppib->pib_hmte, pResData);
    5959
    6060  if(winexe) {
     
    7272//******************************************************************************
    7373//******************************************************************************
    74 Win32LxExe::Win32LxExe(HINSTANCE hInstance)
     74Win32LxExe::Win32LxExe(HINSTANCE hInstance, PVOID pResData)
    7575                 : Win32ImageBase(hInstance),
    76                    Win32LxImage(hInstance),
     76                   Win32LxImage(hInstance, pResData),
    7777                   Win32ExeBase(hInstance)
    7878{
Note: See TracChangeset for help on using the changeset viewer.