Implement StringToCoTaskMem{Ansi,Uni} (bug 58102).
[mono.git] / mcs / class / corlib / System.Runtime.InteropServices / FILETIME.cs
1 //
2 // System.Runtime.InteropServices.FILETIME.cs
3 //
4 // Author:
5 //   Andreas Nahr (ClassDevelopment@A-SoftTech.com)
6 //
7
8 namespace System.Runtime.InteropServices
9 {
10         [ComVisible (false)]
11         public struct FILETIME
12         {
13                 public int dwHighDateTime;
14                 public int dwLowDateTime;
15         }
16 }