Merge pull request #1952 from esdrubal/proc_name
[mono.git] / mcs / class / corlib / ReferenceSources / win32native.cs
1 namespace Microsoft.Win32
2 {
3         static class Win32Native
4         {
5                 internal const string ADVAPI32 = "advapi32.dll";
6
7                 internal const int ERROR_SUCCESS = 0x0;
8
9                 public static string GetMessage (int hr)
10                 {
11                         return "Error " + hr;
12                 }
13
14                 public class SECURITY_ATTRIBUTES
15                 {
16
17                 }
18         }
19 }