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/sec.cpp

    r2134 r4364  
    1 /* $Id: sec.cpp,v 1.5 1999-12-19 12:25:55 sandervl Exp $ */
     1/* $Id: sec.cpp,v 1.6 2000-10-02 13:10:12 phaller Exp $ */
    22
    33/*
     
    1212 * Copyright 1996-1998 Marcus Meissner
    1313 */
     14
     15#include <odin.h>
     16#include <odinwrap.h>
     17#include <os2sel.h>
    1418
    1519#include <stdlib.h>
     
    2125#include <os2win.h>
    2226#include "ntdll.h"
     27
     28
     29ODINDEBUGCHANNEL(NTDLL-SEC)
    2330
    2431/*
     
    169176 *                 RtlInitializeSid            [NTDLL.410]
    170177 */
    171 DWORD WINAPI RtlInitializeSid(PSID                      psid,
    172                               PSID_IDENTIFIER_AUTHORITY psidauth,
    173                               DWORD                     c)
     178ODINFUNCTION3(DWORD, RtlInitializeSid,
     179              PSID, psid,
     180              PSID_IDENTIFIER_AUTHORITY, psidauth,
     181              DWORD, c)
    174182{
    175183  BYTE  a = c & 0xff;
    176 
    177   dprintf(("NTDLL: RtlInitializeSid(%08xh,%08xh,%08xh)\n",
    178            psid,
    179            psidauth,
    180            c));
    181184
    182185  if (a>=SID_MAX_SUB_AUTHORITIES)
     
    207210 *                 RtlSubAuthoritySid          [NTDLL.497]
    208211 */
    209 LPDWORD WINAPI RtlSubAuthoritySid(PSID  psid,
    210                                   DWORD nr)
    211 {
    212   dprintf(("NTDLL: RtlSubAuthoritySid(%08xh,%08xh)\n",
    213            psid,
    214            nr));
    215 
     212ODINFUNCTION2(LPDWORD, RtlSubAuthoritySid,
     213              PSID, psid,
     214              DWORD, nr)
     215{
    216216  return &(psid->SubAuthority[nr]);
    217217}
Note: See TracChangeset for help on using the changeset viewer.