[eglib] Prefer <langinfo.h> to <localcharset.h>
[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 }