Ignore:
Timestamp:
Aug 19, 1999, 12:00:58 AM (26 years ago)
Author:
phaller
Message:

Add: stub for SetThreadPriorityBoost

File:
1 edited

Legend:

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

    r100 r559  
    1 /* $Id: stubs.cpp,v 1.5 1999-06-10 20:48:01 phaller Exp $ */
     1/* $Id: stubs.cpp,v 1.6 1999-08-18 22:00:58 phaller Exp $ */
    22
    33/*
     
    35513551
    35523552
     3553/*****************************************************************************
     3554 * Name      : DWORD SetThreadPriorityBoost
     3555 * Purpose   : Unknown
     3556 * Parameters: Unknown (wrong)
     3557 * Variables :
     3558 * Result    : Unknown
     3559 * Remark    :
     3560 * Status    : UNTESTED STUB
     3561 *
     3562 * Author    : Patrick Haller [Tue, 1999/06/08 21:44]
     3563 *****************************************************************************/
     3564
     3565DWORD WIN32API SetThreadPriorityBoost(DWORD x1,
     3566                                      DWORD x2)
     3567{
     3568  dprintf(("KERNEL32: SetThreadPriorityBoost(%08xh, %08xh) not implemented\n",
     3569           x1,
     3570           x2));
     3571
     3572  return (0);
     3573}
     3574
     3575
Note: See TracChangeset for help on using the changeset viewer.