Ignore:
Timestamp:
Jun 28, 1999, 9:55:33 AM (26 years ago)
Author:
sandervl
Message:

TLS apis put in separate file

File:
1 edited

Legend:

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

    r151 r233  
    1 /* $Id: KERNEL32.CPP,v 1.7 1999-06-21 23:23:36 phaller Exp $ */
     1/* $Id: KERNEL32.CPP,v 1.8 1999-06-28 07:55:16 sandervl Exp $ */
    22
    33/*
     
    113113  return (HMSetStdHandle(IDStdHandle,
    114114                         hHandle));
    115 }
    116 //******************************************************************************
    117 //******************************************************************************
    118 DWORD WIN32API TlsAlloc()
    119 {
    120   dprintf(("KERNEL32:  TlsAlloc\n"));
    121   return(O32_TlsAlloc());
    122 }
    123 //******************************************************************************
    124 //******************************************************************************
    125 BOOL WIN32API TlsFree(DWORD index)
    126 {
    127   dprintf(("KERNEL32:  TlsFree\n"));
    128   return(O32_TlsFree(index));
    129 }
    130 //******************************************************************************
    131 //******************************************************************************
    132 LPVOID WIN32API TlsGetValue(DWORD index)
    133 {
    134  LPVOID rc;
    135 
    136   rc = O32_TlsGetValue(index);
    137 //  dprintf(("KERNEL32:  TlsGetValue %d returned %X\n", index, rc));
    138   return(rc);
    139 }
    140 //******************************************************************************
    141 //******************************************************************************
    142 BOOL WIN32API TlsSetValue(DWORD index, LPVOID val)
    143 {
    144 //  dprintf(("KERNEL32:  TlsSetValue\n"));
    145   return(O32_TlsSetValue(index, val));
    146115}
    147116//******************************************************************************
Note: See TracChangeset for help on using the changeset viewer.