Changeset 559 for trunk/src/kernel32


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

Add: stub for SetThreadPriorityBoost

Location:
trunk/src/kernel32
Files:
2 edited

Legend:

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

    r558 r559  
    1 ; $Id: KERNEL32.DEF,v 1.23 1999-08-18 21:54:27 phaller Exp $
     1; $Id: KERNEL32.DEF,v 1.24 1999-08-18 22:00:57 phaller Exp $
    22
    33;Created by BLAST for IBM's compiler
     
    794794    SetThreadLocale            = _SetThreadLocale@4         @671
    795795    SetThreadPriority          = _SetThreadPriority@8       @672
    796 ;   SetThreadPriorityBoost     = _SetThreadPriorityBoost@?              ;NT
     796    SetThreadPriorityBoost     = _SetThreadPriorityBoost@8  @787        ;NT
    797797    SetTimeZoneInformation     = _SetTimeZoneInformation@4  @673
    798798    SetUnhandledExceptionFilter  = _SetUnhandledExceptionFilter@4 @674
  • 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.