Files
mars-nwe/include/nwnss/include/fullDirectoryInfo.h
2026-06-15 14:55:49 +02:00

77 lines
2.4 KiB
C

/****************************************************************************
|
| (C) Copyright 1985, 1991, 1993, 1996 Novell, Inc.
| All Rights Reserved.
|
| This program is free software; you can redistribute it and/or
| modify it under the terms of version 2 of the GNU General Public
| License as published by the Free Software Foundation.
|
| This program is distributed in the hope that it will be useful,
| but WITHOUT ANY WARRANTY; without even the implied warranty of
| MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
| GNU General Public License for more details.
|
| You should have received a copy of the GNU General Public License
| along with this program; if not, contact Novell, Inc.
|
| To contact Novell about this file by physical or electronic mail,
| you may find current contact information at www.novell.com
|
|***************************************************************************
|
| NetWare Advance File Services (NSS) module
|
|---------------------------------------------------------------------------
|
| $Author: blarsen $
| $Date: 2006-01-21 04:09:53 +0530 (Sat, 21 Jan 2006) $
|
| $RCSfile$
| $Revision: 1315 $
|
|---------------------------------------------------------------------------
| This module is used to:
| This defines the interface into name spaces.
|
| WARNING! WARNING! WARNING! WARNING! WARNING! WARNING! WARNING! WARNING!
|
| This header file should ONLY be used for NSS internal development.
| This includes Semantic Agents (SA) and Loadable Storage Services (LSS).
| Any other use may cause conflicts which NSS will NOT fix.
+-------------------------------------------------------------------------*/
#ifndef _FULLDIRECTORYINFO_H_
#define _FULLDIRECTORYINFO_H_
#include <xUnicode.h>
#ifndef _OMNI_H_
#include <omni.h>
#endif
#ifdef __cplusplus
extern "C" {
#endif
/*-------------------------------------------------------------------------
* There are times when we need to ask directories for their FULL
* information. This structure is used to return that full information
*-------------------------------------------------------------------------*/
typedef struct FullDirectoryInfo_s
{
Zid_t zid;
NINT nameSpaceMask;
WORD nameType;
WORD flagsAndLen;
WORD oldNameUniquifier; /* Not used on version three beasts */
BYTE matchAttributes;
BYTE miscFlags;
unicode_t name[zMAX_COMPONENT_NAME];
} FullDirectoryInfo_s;
#ifdef __cplusplus
}
#endif
#endif