Ignore:
Timestamp:
Jul 20, 2000, 8:07:00 PM (25 years ago)
Author:
sandervl
Message:

Always try to allocate an executable image at it's preferred address

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/kernel32/KERNEL32.CPP

    r3804 r3872  
    1 /* $Id: KERNEL32.CPP,v 1.49 2000-07-06 21:18:38 sandervl Exp $ */
     1/* $Id: KERNEL32.CPP,v 1.50 2000-07-20 18:06:58 sandervl Exp $ */
    22
    33/*
     
    707707
    708708
    709 ODINFUNCTION4(BOOL,    GetStringTypeW,
    710               DWORD,   dwInfoType,
    711               LPCWSTR, lpSrcStr,
    712               int,     cchSrc,
    713               LPWORD,  lpCharType)
    714 {
    715   return GetStringTypeExW(0,
    716                           dwInfoType,
    717                           lpSrcStr,
    718                           cchSrc,
    719                           lpCharType);
    720 }
    721 
    722709
    723710ODINFUNCTION5(BOOL,    GetStringTypeExW,
     
    771758}
    772759
    773 //******************************************************************************
    774 //NOTE: This has one parameter more than the W version! (@#$@#$)
    775 //******************************************************************************
    776 ODINFUNCTION5(BOOL,    GetStringTypeA,
    777               LCID,    locale,
     760ODINFUNCTION4(BOOL,    GetStringTypeW,
    778761              DWORD,   dwInfoType,
    779               LPCSTR, lpSrcStr,
     762              LPCWSTR, lpSrcStr,
    780763              int,     cchSrc,
    781764              LPWORD,  lpCharType)
    782765{
    783   return GetStringTypeExA(locale,
     766  return ODIN_GetStringTypeExW(0,
    784767                          dwInfoType,
    785768                          lpSrcStr,
     
    854837}
    855838
     839//******************************************************************************
     840//NOTE: This has one parameter more than the W version! (@#$@#$)
     841//******************************************************************************
     842ODINFUNCTION5(BOOL,    GetStringTypeA,
     843              LCID,    locale,
     844              DWORD,   dwInfoType,
     845              LPCSTR,  lpSrcStr,
     846              int,     cchSrc,
     847              LPWORD,  lpCharType)
     848{
     849  return ODIN_GetStringTypeExA(locale,
     850                          dwInfoType,
     851                          lpSrcStr,
     852                          cchSrc,
     853                          lpCharType);
     854}
    856855
    857856//******************************************************************************
Note: See TracChangeset for help on using the changeset viewer.