Changeset 9776


Ignore:
Timestamp:
Feb 7, 2003, 2:58:28 PM (22 years ago)
Author:
sandervl
Message:

Rename resource directory

Location:
trunk/src
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • TabularUnified trunk/src/NTDLL/initntdll.c

    r9733 r9776  
    3636
    3737BOOL WIN32API NTDLL_LibMain(HINSTANCE hinstDLL, DWORD fdwReason, LPVOID lpvReserved);
    38 extern DWORD _Resource_PEResTab;
     38extern DWORD ntdll_PEResTab;
    3939
    4040static HMODULE dllHandle = 0;
     
    5454
    5555         CheckVersionFromHMOD(PE2LX_VERSION, hModule); /*PLF Wed  98-03-18 05:28:48*/
    56          dllHandle = RegisterLxDll(hModule, (WIN32DLLENTRY)NTDLL_LibMain, (PVOID)&_Resource_PEResTab,
     56         dllHandle = RegisterLxDll(hModule, (WIN32DLLENTRY)NTDLL_LibMain, (PVOID)&ntdll_PEResTab,
    5757                                   0, 0, 0);
    5858         if(dllHandle == 0)
  • TabularUnified trunk/src/NTDLL/makefile

    r9731 r9776  
    1 # $Id: makefile,v 1.35 2003-01-23 20:21:58 sandervl Exp $
     1# $Id: makefile,v 1.36 2003-02-07 13:58:28 sandervl Exp $
    22
    33#
     
    1010CCENV = EMX
    1111NOTEXPDEF = 1
     12WRC_PREFIX_RESOURCE=1
    1213
    1314#
  • TabularUnified trunk/src/ddraw/initddraw.cpp

    r9698 r9776  
    1 /* $Id: initddraw.cpp,v 1.1 2003-01-21 11:20:35 sandervl Exp $
     1/* $Id: initddraw.cpp,v 1.2 2003-02-07 13:58:17 sandervl Exp $
    22 *
    33 * DLL entry point
     
    3939extern "C" {
    4040 //Win32 resource table (produced by wrc)
    41  extern DWORD _Resource_PEResTab;
     41 extern DWORD ddraw_PEResTab;
    4242}
    4343
     
    7575         CheckVersionFromHMOD(PE2LX_VERSION, hModule); /*PLF Wed  98-03-18 05:28:48*/
    7676
    77          dllHandle = RegisterLxDll(hModule, NULL, (PVOID)&_Resource_PEResTab,
     77         dllHandle = RegisterLxDll(hModule, NULL, (PVOID)&ddraw_PEResTab,
    7878                                   DDRAW_MAJORIMAGE_VERSION, DDRAW_MINORIMAGE_VERSION,
    7979                                   IMAGE_SUBSYSTEM_WINDOWS_GUI);
  • TabularUnified trunk/src/ddraw/makefile

    r9698 r9776  
    1 # $Id: makefile,v 1.33 2003-01-21 11:20:36 sandervl Exp $
     1# $Id: makefile,v 1.34 2003-02-07 13:58:17 sandervl Exp $
    22
    33#
     
    1111# Compiler, tools, and inference rules.
    1212#
     13WRC_PREFIX_RESOURCE=1
    1314!include ../../makefile.inc
    1415
Note: See TracChangeset for help on using the changeset viewer.