2015-08-26 07:17:56 -04:00
|
|
|
namespace Microsoft.Win32
|
|
|
|
{
|
|
|
|
static class Win32Native
|
|
|
|
{
|
|
|
|
internal const string ADVAPI32 = "advapi32.dll";
|
|
|
|
|
|
|
|
internal const int ERROR_SUCCESS = 0x0;
|
|
|
|
|
|
|
|
public static string GetMessage (int hr)
|
|
|
|
{
|
|
|
|
return "Error " + hr;
|
|
|
|
}
|
2016-02-22 11:00:01 -05:00
|
|
|
|
|
|
|
public class SECURITY_ATTRIBUTES
|
|
|
|
{
|
|
|
|
|
|
|
|
}
|
2015-08-26 07:17:56 -04:00
|
|
|
}
|
|
|
|
}
|