Changeset 17070


Ignore:
Timestamp:
Aug 10, 2001, 9:31:19 PM (24 years ago)
Author:
sandervl
Message:

more logging

File:
1 edited

Legend:

Unmodified
Added
Removed
  • TabularUnified tags/trunk/src/advapi32/ADVAPI32.CPP

    r16155 r17070  
    1 /* $Id: ADVAPI32.CPP,v 1.18 2001-04-26 17:00:33 sandervl Exp $ */
     1/* $Id: ADVAPI32.CPP,v 1.19 2001-08-10 19:31:19 sandervl Exp $ */
    22
    33/*
     
    7676
    7777//******************************************************************************
     78/* The GetUserName function retrieves the user name of the current
     79 *  thread. This is the name of the user currently logged onto the
     80 *  system.
     81 */
    7882//******************************************************************************
    7983BOOL WIN32API GetUserNameA(  /*PLF Wed  98-02-11 13:33:39*/
    8084    LPTSTR lpBuffer,        /* address of name buffer       */
    8185    LPDWORD lpcchBuffer)    /* address of size of name buffer       */
    82 
    83 
    84     /* The GetUserName function retrieves the user name of the current
    85      *  thread. This is the name of the user currently logged onto the
    86      *  system.
    87      */
    88 
    89 {
     86{
     87    dprintf(("GetUserNameA %x %x %x", lpBuffer, lpcchBuffer, *lpcchBuffer));
    9088    #define USERNAME "USER"
    9189    if(*lpcchBuffer < sizeof(USERNAME))
Note: See TracChangeset for help on using the changeset viewer.