You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
601 B
26 lines
601 B
//+---------------------------------------------------------------------------
|
|
//
|
|
// Microsoft Windows
|
|
// Copyright (C) Microsoft Corporation, 2001.
|
|
//
|
|
// File: cmdkey: UTILS.H
|
|
//
|
|
// Contents: Utility functions
|
|
//
|
|
// 1. Convert marshalled username to a more informative string
|
|
//
|
|
// Classes:
|
|
//
|
|
// Functions:
|
|
//
|
|
// History: 08-09-01 georgema Created
|
|
//
|
|
//----------------------------------------------------------------------------
|
|
#ifndef __UTILS_H__
|
|
#define __UTILS_H__
|
|
|
|
WCHAR *UnMarshallUserName(WCHAR *pszMarshalled);
|
|
|
|
#endif
|
|
|
|
|