Changeset 461
- Timestamp:
- Aug 24, 2009, 11:55:45 AM (16 years ago)
- Location:
- GPL/trunk
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
GPL/trunk/drv32/impkee.def
r32 r461 56 56 KernRASSysTrace @ 80 57 57 KernPerfSysTrace @ 81 58 SIS @ 90 59 InterruptLevel @ 92 60 _TKSSBase @ 93 61 KEEVersionId @ 94 58 ;PS+++ rename old, add new 59 _KernSISData @90 60 _KernLISData @91 61 _KernInterruptLevel @92 62 _KernTKSSBase @93 63 _KernKEEVersion @94 64 ; SIS @ 90 65 ; InterruptLevel @ 92 66 ; _TKSSBase @ 93 67 ; KEEVersionId @ 94 62 68 KernLockFile @ 100 63 69 KernUnLockFile @ 101 -
GPL/trunk/drv32/util.cpp
r63 r461 109 109 //***************************************************************************** 110 110 //***************************************************************************** 111 #if !defined(KEE) 111 112 static GINFO FAR48 *pGIS = 0; 113 #endif 112 114 //***************************************************************************** 113 115 //***************************************************************************** 116 //PS++ Begin 117 extern "C" 118 { 119 #pragma pack(1) 120 #include "infoseg.h" 121 #pragma pack() 122 extern PVOID KernSISData; 123 #define KernSISData ((struct InfoSegGDT *)&KernSISData) 124 } 114 125 ULONG os2gettimesec() 115 126 { 127 #if !defined(KEE) 116 128 APIRET rc; 117 129 FARPTR16 p; … … 127 139 } 128 140 return pGIS->Time; 141 #else 142 return KernSISData->SIS_BigTime; 143 #endif 129 144 } 130 145 //***************************************************************************** … … 132 147 ULONG os2gettimemsec() 133 148 { 149 #if !defined(KEE) 134 150 APIRET rc; 135 151 FARPTR16 p; … … 145 161 } 146 162 return pGIS->MilliSeconds; 163 #else 164 return KernSISData->SIS_MsCount; 165 #endif 147 166 } 167 //PS++ End 148 168 //***************************************************************************** 149 169 //***************************************************************************** -
GPL/trunk/uniaud.inc
r458 r461 7 7 # BUILDVERSION must be 3 parts, and only numbers like 5.44.108 8 8 # It is best that 2'nd number is always 2 digits, eg at least 10 9 BUILDVERSION = 1.9. 199 BUILDVERSION = 1.9.20 10 10 11 11 # Fixpack version … … 13 13 # ex RC3 GA FIXPACK2 beta_47 14 14 # Comment out to avoid a fixpack line in bldlevel 15 FIXPACK = SVN r4 5815 FIXPACK = SVN r461 16 16 17 17 # ALSA BUILD VERSION
Note:
See TracChangeset
for help on using the changeset viewer.