////////////////////////////////////////////////////////////////////////////// // // Copyright (c) 1999-2003 Microsoft Corporation // // Module Name: // Schema.cpp // // Description: // Implementation of schema defined strings // // ////////////////////////////////////////////////////////////////////////////// #include "pch.h" ////////////////////////////////////////////////////////////////////////////// // Global Data ////////////////////////////////////////////////////////////////////////////// // // class // const WCHAR * const PVDR_CLASS_DISK = L"Win32_NasDisk"; const WCHAR * const PVDR_CLASS_VOLUME = L"Win32_NasVolume"; const WCHAR * const PVDR_CLASS_VOLUMEON = L"Win32_VolumeOn"; // // Methods // const WCHAR * const PVDR_MTHD_CLEAN = L"Clean"; const WCHAR * const PVDR_MTHD_CONVERT = L"Convert"; const WCHAR * const PVDR_MTHD_CREATE = L"Create"; const WCHAR * const PVDR_MTHD_DELETE = L"Delete"; const WCHAR * const PVDR_MTHD_EXTEND = L"Extend"; const WCHAR * const PVDR_MTHD_REACTIVATE = L"Reactivate"; const WCHAR * const PVDR_MTHD_REPLACE = L"Replace"; const WCHAR * const PVDR_MTHD_RESCAN = L"Rescan"; // // Properties // const WCHAR * const PVDR_PROP_ADAPTORNAME = L"AdaptorName"; const WCHAR * const PVDR_PROP_BUSNUMBER = L"BusNumber"; const WCHAR * const PVDR_PROP_BUSTYPE = L"BusType"; const WCHAR * const PVDR_PROP_DEVICEPATH = L"DevicePath"; const WCHAR * const PVDR_PROP_DISK = L"Disk"; const WCHAR * const PVDR_PROP_DISKS = L"Disks"; const WCHAR * const PVDR_PROP_DISKID = L"DiskId"; const WCHAR * const PVDR_PROP_DISKSTATUS = L"DiskStatus"; const WCHAR * const PVDR_PROP_DYNAMIC = L"Dynamic"; const WCHAR * const PVDR_PROP_FORCE = L"Force"; const WCHAR * const PVDR_PROP_FREESPACE = L"FreeSpace"; const WCHAR * const PVDR_PROP_FRIENDLYNAME = L"FriendlyName"; const WCHAR * const PVDR_PROP_ID = L"ID"; const WCHAR * const PVDR_PROP_LABEL = L"Label"; const WCHAR * const PVDR_PROP_LUNNUMBER = L"LunNumber"; const WCHAR * const PVDR_PROP_MOUNT = L"MountPoints"; const WCHAR * const PVDR_PROP_NAME = L"Name"; const WCHAR * const PVDR_PROP_PORTNUMBER = L"PortNumber"; const WCHAR * const PVDR_PROP_SIZE = L"Size"; const WCHAR * const PVDR_PROP_TARGETNUMBER = L"TargetNumber"; const WCHAR * const PVDR_PROP_TYPE = L"Type"; const WCHAR * const PVDR_PROP_VOLUME = L"Volume"; const WCHAR * const PVDR_PROP_VOLUMESTATUS = L"VolumeStatus";