2021-09-24 07:38:28 +03:00
|
|
|
using System;
|
|
|
|
using System.Runtime.InteropServices;
|
2023-04-07 01:20:14 +03:00
|
|
|
using Windows.Win32.Foundation.Metadata;
|
2021-09-24 07:38:28 +03:00
|
|
|
|
|
|
|
namespace Windows.Win32.System.Wmi
|
|
|
|
{
|
|
|
|
public static unsafe partial class Apis
|
|
|
|
{
|
|
|
|
public const uint MI_FLAG_ANY = (1|2|4|8|16|32|64);
|
|
|
|
public const uint MI_FLAG_VERSION = (1<<26|1<<27|1<<28);
|
|
|
|
public const uint MI_FLAG_ADOPT = unchecked((uint)(1 << 31));
|
|
|
|
}
|
2021-05-26 22:53:55 +03:00
|
|
|
}
|