mirror of https://github.com/tongzx/nt5src
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.
53 lines
757 B
53 lines
757 B
#pragma namespace("\\root")
|
|
|
|
instance of __WmiMappedDriverNamespace
|
|
{
|
|
Name = "a51";
|
|
Clsid = "{7998dc37-d3fe-487c-a60a-7701fcc70cc6}";
|
|
};
|
|
|
|
#pragma namespace("\\root\\default")
|
|
class MyClass
|
|
{
|
|
[key] string Name;
|
|
string OneProp;
|
|
uint32 AnotherProp;
|
|
uint8 Array[];
|
|
object Embed;
|
|
};
|
|
|
|
class OtherEnd
|
|
{
|
|
[key] sint32 K;
|
|
string OtherProp;
|
|
};
|
|
|
|
class MyAssoc
|
|
{
|
|
[key] string guid;
|
|
MyClass ref r1;
|
|
OtherEnd ref r2;
|
|
};
|
|
|
|
#pragma namespace("\\root\\a51")
|
|
class MyClass
|
|
{
|
|
[key] string Name;
|
|
string OneProp;
|
|
uint32 AnotherProp;
|
|
uint8 Array[];
|
|
object Embed;
|
|
};
|
|
|
|
class OtherEnd
|
|
{
|
|
[key] sint32 K;
|
|
string OtherProp;
|
|
};
|
|
|
|
class MyAssoc
|
|
{
|
|
[key] string guid;
|
|
MyClass ref r1;
|
|
OtherEnd ref r2;
|
|
};
|