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

Stubbed NtOpenThread.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • 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.