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

YD: Changes for header updates

File:
1 edited

Legend:

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

    r9945 r9975  
    1 /* $Id: thread.cpp,v 1.53 2003-03-27 14:00:54 sandervl Exp $ */
     1/* $Id: thread.cpp,v 1.54 2003-04-02 12:58:31 sandervl Exp $ */
    22
    33/*
     
    276276//******************************************************************************
    277277//******************************************************************************
     278/*****************************************************************************
     279 * Name      : BOOL SetThreadPriorityBoost
     280 * Purpose   : The SetThreadPriorityBoost function disables or enables
     281 *             the ability of the system to temporarily boost the priority
     282 *             of a thread.
     283 * Parameters: Unknown (wrong)
     284 * Variables :
     285 * Result    : Unknown
     286 * Remark    :
     287 * Status    : UNTESTED STUB
     288 *
     289 * Author    : Patrick Haller [Tue, 1999/06/08 21:44]
     290 *****************************************************************************/
     291
     292BOOL WIN32API SetThreadPriorityBoost(HANDLE hThread,
     293                                     BOOL DisablePriorityBoost)
     294{
     295  dprintf(("KERNEL32: SetThreadPriorityBoost(%08xh, %08xh) not implemented\n",
     296           hThread,DisablePriorityBoost));
     297
     298  return FALSE;
     299}
     300//******************************************************************************
     301//******************************************************************************
    278302Win32Thread::Win32Thread(LPTHREAD_START_ROUTINE pUserCallback, LPVOID lpData, DWORD dwFlags, HANDLE hThread)
    279303{
Note: See TracChangeset for help on using the changeset viewer.