mirror of https://github.com/lianthony/NT4.0
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.
33 lines
611 B
33 lines
611 B
//+---------------------------------------------------------------------------
|
|
//
|
|
// Microsoft Windows
|
|
// Copyright (C) Microsoft Corporation, 1992 - 1994.
|
|
//
|
|
// File: longname.h
|
|
//
|
|
// Contents: GetLongPathName
|
|
//
|
|
// History: 25-Aug-94 DrewB Created
|
|
//
|
|
//----------------------------------------------------------------------------
|
|
|
|
#ifndef __LONGNAME_H__
|
|
#define __LONGNAME_H__
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
DWORD
|
|
APIENTRY
|
|
GetLongPathNameW(
|
|
IN LPCWSTR lpszPath,
|
|
IN LPWSTR lpszLongPath,
|
|
IN DWORD cchBuffer
|
|
);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif // #ifndef __LONGNAME_H__
|