Changeset 233 for trunk/src


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

TLS apis put in separate file

Location:
trunk/src/kernel32
Files:
1 added
2 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//******************************************************************************
  • trunk/src/kernel32/makefile

    r126 r233  
    1 # $Id: makefile,v 1.8 1999-06-20 10:55:36 sandervl Exp $
     1# $Id: makefile,v 1.9 1999-06-28 07:55:16 sandervl Exp $
    22
    33#
     
    6565       pefile.OBJ \
    6666       winimgres.OBJ \
     67       tls.obj \
    6768       async.OBJ \
    6869       fileio.obj \
     
    120121    $(PDWIN32_INCLUDE)\unicode.h
    121122
     123tls.obj: tls.cpp
     124
    122125fileio.obj: fileio.cpp \
    123126    $(PDWIN32_INCLUDE)\unicode.h
Note: See TracChangeset for help on using the changeset viewer.