Changeset 173 for Include/Classes/System/OperatingSystem.ab
- Timestamp:
- Mar 17, 2007, 5:56:56 PM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
Include/Classes/System/OperatingSystem.ab
r142 r173 13 13 End Sub 14 14 15 Sub OperatingSystem(vi As OSVERSIONINFOA) As OperatingSystem15 Sub OperatingSystem(vi As OSVERSIONINFOA) 16 16 pf = vi.dwPlatformId As PlatformID, 17 17 ver = New Version(vi.dwMajorVersion, vi.MinorVersion, vi.BuildNumber) … … 19 19 End Sub 20 20 21 Sub OperatingSystem(vi As OSVERSIONINFOW) As OperatingSystem21 Sub OperatingSystem(vi As OSVERSIONINFOW) 22 22 pf = vi.dwPlatformId As PlatformID, 23 23 ver = New Version(vi.dwMajorVersion, vi.MinorVersion, vi.BuildNumber)
Note:
See TracChangeset
for help on using the changeset viewer.