Changeset 175 for Include/Classes/System/Version.ab
- Timestamp:
- Mar 21, 2007, 7:06:34 PM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
Include/Classes/System/Version.ab
r161 r175 1 1 ' System/Version.ab 2 3 #ifndef __SYSTEM_VERSION_AB__ 4 #define __SYSTEM_VERSION_AB__ 5 6 #require <api_winsock2.sbp> 2 7 3 8 Class Version … … 75 80 76 81 Override Function GetHashCode() As Long 77 Return htonl(major) Xor minor Xor build Xor htonl(rivision)82 Return _System_BSwap(major As DWord) Xor minor Xor build Xor _System_BSwap(rivision As DWord) 78 83 End Function 79 84 … … 143 148 rivision As Long 144 149 End Class 150 151 #endif '__SYSTEM_VERSION_AB__
Note:
See TracChangeset
for help on using the changeset viewer.