www.pudn.com > GDIPlusCF.zip > FILETIME.cs


using System; 
using System.Runtime.InteropServices; 
 
namespace OpenNETCF.Runtime.InteropServices.ComTypes 
{ 
    ///  
    /// This structure is a 64-bit value representing the number of 100-nanosecond intervals since January 1, 1601. 
    ///  
    [StructLayout(LayoutKind.Sequential)] 
    public struct FILETIME 
    { 
        ///  
        /// Specifies the low 32 bits of the FILETIME. 
        ///  
        public int dwLowDateTime; 
        ///  
        /// Specifies the high 32 bits of the FILETIME. 
        ///  
        public int dwHighDateTime; 
    } 
}