Ignore:
Timestamp:
Nov 18, 2002, 2:54:12 PM (23 years ago)
Author:
sandervl
Message:

Added support for renaming of exported functions

File:
1 edited

Legend:

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

    r8462 r9411  
    1 /* $Id: windlllx.cpp,v 1.25 2002-05-21 14:42:40 sandervl Exp $ */
     1/* $Id: windlllx.cpp,v 1.26 2002-11-18 13:53:54 sandervl Exp $ */
    22
    33/*
     
    4040#include "dbglocal.h"
    4141
    42 char *lpszCustomDllName = NULL;
    43 ULONG dwOrdinalBase = 0;
    44 
    45 //******************************************************************************
    46 //******************************************************************************
    47 void WIN32API SetCustomBuildName(char *lpszName, DWORD ordinalbase)
    48 {
    49     lpszCustomDllName = lpszName;
    50     dwOrdinalBase     = ordinalbase;
     42char *lpszCustomDllName      = NULL;
     43char *lpszCustomExportPrefix = NULL;
     44ULONG dwOrdinalBase          = 0;
     45
     46//******************************************************************************
     47//******************************************************************************
     48void WIN32API SetCustomBuildName(char *lpszName, DWORD ordinalbase,
     49                                 char *lpszExportPrefix)
     50{
     51    lpszCustomDllName      = lpszName;
     52    dwOrdinalBase          = ordinalbase;
     53    lpszCustomExportPrefix = lpszExportPrefix;
    5154}
    5255//******************************************************************************
Note: See TracChangeset for help on using the changeset viewer.