Windows Longhorn build 4059
Build of Windows Longhorn | |
OS family | Windows NT |
---|---|
Version number | 6.0 |
Build number | 4059 |
Build revision | 0 |
Architecture | x86 |
Build lab | main |
Compiled on | 2003-12-08 |
Windows Longhorn build 4059 is a build of Windows Longhorn. A reference of this build was found in the WindowsListView.cs
file, located within the reference source code for the .NET 4.5.1 version of Windows Presentation Foundation. It mentions that builds after 4059 always display the view header regardless of the view mode being used in Explorer. This is consistent with the behaviour shown in later builds of Longhorn.
The full build tag was mentioned by a user of the MSFN forums on 27 May 2007.[1] It is known that there is an XImage program file whose version information contains this build tag.
WindowsListView.cs
[edit | edit source]
// Current LH builds (4059) display the header even in tile view,
// which makes us think we are in details view.
// Explicitly detect tile view and return false.
if (view == NativeMethods.LV_VIEW_TILE)
{
return false;
}
if (InReportView(hwnd) || (view == NativeMethods.LV_VIEW_DETAILS))
{
return true;
}
References[edit | edit source]
- ↑ dexter.inside. The Art of OEM - nLite & OEM Preinstallation, MSFN. 26 March 2007.