Changeset 5998 for trunk/src


Ignore:
Timestamp:
Jun 13, 2001, 4:45:15 PM (24 years ago)
Author:
bird
Message:

Stubbed NtOpenThread.

Location:
trunk/src/NTDLL
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/NTDLL/ntdll.def

    r5568 r5998  
    1 ; $Id: ntdll.def,v 1.37 2001-04-22 10:38:58 sandervl Exp $
     1; $Id: ntdll.def,v 1.38 2001-06-13 14:45:15 bird Exp $
    22
    33;
     
    157157    NtOpenSemaphore               = _NtOpenSemaphore@12                 @145
    158158    NtOpenSymbolicLinkObject      = _NtQuerySymbolicLinkObject@12       @146 ; JW: Is that correct ???
    159 ;   NtOpenThread                            @147
     159    NtOpenThread                  = _NtOpenThread@16                    @147
    160160    NtOpenThreadToken             = _NtOpenThreadToken@16               @148
    161161;   NtOpenTimer                             @149
  • trunk/src/NTDLL/unknown.cpp

    r1653 r5998  
    1 /* $Id: unknown.cpp,v 1.7 1999-11-09 09:30:21 phaller Exp $ */
     1/* $Id: unknown.cpp,v 1.8 2001-06-13 14:45:15 bird Exp $ */
    22
    33/*
     
    421421}
    422422
     423
     424/**
     425 * Opens a thread...
     426 * @returns Error code?
     427 * @param   pThreadHandle
     428 * @param   dwFlags
     429 * @param   pvAttribs           Pointer to some attribute structure.
     430 * @param   padwOpenThreadParam Pointer to array of dword it seems. 2 entries?
     431 * @status  stub
     432 * @author  knut st. osmundsen (knut.stange.osmundsen@mynd.no)
     433 * @remark  http://www.windowsitlibrary.com/Content/356/08/6.html
     434 *          Used by TaskMgr.exe.
     435 */
     436DWORD WIN32API NtOpenThread(PHANDLE phThreadHandle, DWORD dwFlags,
     437                            POBJECT_ATTRIBUTES pAttribs, PDWORD padwOpenThreadParam)
     438{
     439    dprintf(("NTDLL: RtlRandom(%08xh,%08xh,%08xh,%08xh) not implemented.\n",
     440             phThreadHandle, dwFlags, pAttribs, padwOpenThreadParam));
     441
     442    return ERROR_NOT_SUPPORTED;
     443}
     444
Note: See TracChangeset for help on using the changeset viewer.