Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
.gif)
| Previous | Next |
WMS_DIRECTORY_ENTRY_FLAGS
The WMS_DIRECTORY_ENTRY_FLAGS enumeration type indicates whether an entry in a data container is a directory.
Syntax
typedef enum WMS_DIRECTORY_ENTRY_FLAGS{
WMS_DIRECTORY_ENTRY_IS_DIRECTORY = 0x0001
};
Members
WMS_DIRECTORY_ENTRY_IS_DIRECTORY
The data container entry is a directory.
Remarks
You can use this enumeration when you are iterating through an enumerated data container and must determine whether an entry in the list is a directory. For example, this is useful when you are implementing a directory playlist parser plug-in or an NTFS file system plug-in. The GetChildInfo method on the IWMSDirectory interface retrieves a pointer to a WMSDirectoryEntryInfo structure that contains a WMS_DIRECTORY_ENTRY_FLAGS enumeration value.
Requirements
Header: datacontainer.h.
Library: WMSServerTypeLib.dll.
Platform: Windows Server 2003 family, Windows Server 2008 family.
See Also
- Enumeration Types
- IWMSDirectory.GetChildInfo (C#)
- IWMSDirectory.GetChildInfo (Visual Basic .NET)
- IWMSDirectory::GetChildInfo
| Previous | Next |