* CurrencyWrapper.cs: Fix file name.
[mono.git] / mcs / class / corlib / System.Runtime.InteropServices / SYSKIND.cs
1 //
2 // System.Runtime.InteropServices.SYSKIND.cs
3 //
4 // Author:
5 //   Andreas Nahr (ClassDevelopment@A-SoftTech.com)
6 //
7
8 using System;
9
10 namespace System.Runtime.InteropServices
11 {
12         [ComVisible (false)]
13         public enum SYSKIND
14         {
15                 SYS_WIN16 = 0,
16                 SYS_WIN32 = 1,
17                 SYS_MAC = 2
18         }
19 }