comparison dwt/internal/c/carboncore/MacTypes.d @ 15:2952d5604c0a

Ported some widgets, added some stuff to the runtime bindings
author Jacob Carlborg <doob@me.com> <jacob.carlborg@gmail.com>
date Fri, 29 Aug 2008 21:46:05 +0200
parents 380af2bdd8e5
children
comparison
equal deleted inserted replaced
14:762fbe6f17d3 15:2952d5604c0a
80 alias OSType* OSTypePtr; 80 alias OSType* OSTypePtr;
81 alias ResType* ResTypePtr; 81 alias ResType* ResTypePtr;
82 82
83 struct UnsignedWide 83 struct UnsignedWide
84 { 84 {
85 UInt32 hi; 85 uint hi;
86 UInt32 lo; 86 uint lo;
87 } 87 }
88
89 struct ProcessSerialNumber
90 {
91 uint highLongOfPSN;
92 uint lowLongOfPSN;
93 }
94
95 alias ProcessSerialNumber * ProcessSerialNumberPtr;