Ignore:
Timestamp:
Oct 2, 2000, 3:10:12 PM (25 years ago)
Author:
phaller
Message:

.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/NTDLL/nt.cpp

    r4059 r4364  
    1 /* $Id: nt.cpp,v 1.9 2000-08-20 15:16:55 phaller Exp $ */
     1/* $Id: nt.cpp,v 1.10 2000-10-02 13:10:10 phaller Exp $ */
    22
    33
     
    1212 */
    1313
     14#include <odin.h>
     15#include <odinwrap.h>
     16#include <os2sel.h>
     17
     18
    1419#include <stdlib.h>
    1520#include <string.h>
     
    2025#include "ntdll.h"
    2126#include <ntdllsec.h>
     27
     28
     29ODINDEBUGCHANNEL(NTDLL-NT)
    2230
    2331
     
    328336*
    329337*/
    330 NTSTATUS WINAPI NtQueryInformationToken(HANDLE  Token,
    331                                         DWORD   TokenInformationClass,
    332                                         LPVOID  TokenInformation,
    333                                         DWORD   TokenInformationLength,
    334                                         LPDWORD ReturnLength)
     338ODINFUNCTION5(NTSTATUS, NtQueryInformationToken,
     339              HANDLE,   Token,
     340              DWORD,    TokenInformationClass,
     341              LPVOID,   TokenInformation,
     342              DWORD,    TokenInformationLength,
     343              LPDWORD,  ReturnLength)
    335344{
    336345 PROCESSTHREAD_SECURITYINFO *pSecInfo;
    337346
    338   dprintf(("NTDLL: NtQueryInformationToken(%08xh,%08xh,%08xh,%08xh,%08xh) not correctly implemented.\n",
    339            Token,
    340            TokenInformationClass,
    341            TokenInformation,
    342            TokenInformationLength,
    343            ReturnLength));
     347  dprintf(("NTDLL: NtQueryInformationToken not correctly implemented.\n"));
    344348
    345349  pSecInfo = (PROCESSTHREAD_SECURITYINFO*)HMHandleGetUserData(Token);
Note: See TracChangeset for help on using the changeset viewer.