Leaked source code of windows server 2003
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.
|
|
/////////////////////////////////////////////////////////////////////////// // // Copyright(C) 1999-2000 Microsoft Corporation all rights reserved. // // Module: Set Date-Time WMI Provider // // Description: Appliance Manager WMI classes // /////////////////////////////////////////////////////////////////////////////// #pragma namespace("\\\\.\\root")
instance of __Namespace { Name = "registry"; };
#pragma namespace("//./root/cimv2")
// Instance provider instance of __Win32Provider as $InstProv { Name = "RegProv" ; ClsId = "{fe9af5c0-d3b6-11ce-a5b6-00aa00680c3f}" ;
};
instance of __InstanceProviderRegistration { Provider = "__Win32Provider.Name=\"RegProv\""; SupportsPut = TRUE; SupportsGet = TRUE; SupportsDelete = FALSE; SupportsEnumeration = TRUE; };
[dynamic, provider("RegProv"), ClassContext("local|hkey_local_machine\\System\\CurrentControlSet\\Control")]
class ProviderDateTimeAdjust { [key] string TimeZoneInformation; [PropertyContext("DisableAutoDaylightTimeSet")] uint32 DisableAutoDaylightTimeSet; };
|