Misplaced Pages

W32

Article snapshot taken from Wikipedia with creative commons attribution-sharealike license. Give it a read and then ask your questions in the chat. We can research this topic together.

Windows USER is a component of the Microsoft Windows operating system that provides core functionality for building simple user interfaces . The component has existed in all versions of Windows, and includes functionality for window management , message passing , input processing and standard controls .

#951048

36-579: W32 may refer to: Windows API , the core set of APIs available in Microsoft Windows Empire Woodland , a British Empire ship Hansa-Brandenburg W.32 , a First World War prototype fighter floatplane Kita-Nagayama Station , in Asahikawa, Hokkaido, Japan Washington Executive Airport , in Clinton, Maryland, United States Westsail 32 ,

72-501: A DLL file called commctrl.dll on 16-bit Windows, and comctl32.dll on 32-bit Windows. It is grouped under the User Interface category of the API. The Windows Shell component provides access to the operating system shell . The component resides in shell.dll on 16-bit Windows, and shell32.dll on 32-bit Windows. The Shell Lightweight Utility Functions are in shlwapi.dll . It

108-524: A compiler that could produce the code needed for these thunks. Versions of 64-bit Windows are also able to run 32-bit applications via WoW64 . The SysWOW64 folder located in the Windows folder on the OS drive contains several tools to support 32-bit applications. Each version of Microsoft Windows contains a version of Windows API, and almost every new version of Microsoft Windows has introduced additions and changes to

144-534: A complex scheme of API thunks was used that could allow 32-bit code to call into 16-bit code (for most of Win16 APIs) and vice versa. Flat thunks allowed 32-bit code to call into 16-bit libraries, and the scheme was used extensively inside Windows 95's libraries to avoid porting the whole OS to Win32 in one batch. In Windows NT, the OS was pure 32-bit, except parts for compatibility with 16-bit applications, and only generic thunks were available to thunk from Win16 to Win32, as for Windows 95. The Platform SDK shipped with

180-525: A personal failure." One of the largest changes to the Windows API was the transition from Win16 (shipped in Windows 3.1 and older) to Win32 (Windows NT and Windows 95 and up). While Win32 was originally introduced with Windows NT 3.1 and Win32s allowed use of a Win32 subset before Windows 95, it was not until Windows 95 that widespread porting of applications to Win32 began. To ease the transition, in Windows 95, for developers outside and inside Microsoft,

216-499: A sailboat [REDACTED] Topics referred to by the same term This disambiguation page lists articles associated with the same title formed as a letter–number combination. If an internal link led you here, you may wish to change the link to point directly to the intended article. Retrieved from " https://en.wikipedia.org/w/index.php?title=W32&oldid=1173872953 " Category : Letter–number combination disambiguation pages Hidden categories: Short description

252-421: Is at the core of any Windows application. Developer functionality related to Windows USER is provided in the C header file winuser.h. In 16-bit versions of Windows, Windows USER was implemented as a file called user.exe. The file extension here was a misnomer , as Windows USER was in fact always a dynamic link library . In 32-bit versions of Windows, the 32-bit version of Windows USER is called user32.dll and

288-563: Is debatable since they don't provide or expose all of the capabilities of Windows API. Although almost all Windows programs use the Windows API, on the Windows NT line of operating systems, programs that start early in the Windows startup process use the Native API instead. The Windows API has always exposed a large part of the underlying structure of the Windows systems to programmers. This had

324-521: Is different from Wikidata All article disambiguation pages All disambiguation pages Windows API The Windows API , informally WinAPI , is the foundational application programming interface (API) that allows a computer program to access the features of the Microsoft Windows operating system in which the program is running. Programs access API functionality via dynamic-link library (DLL) technology. Each major version of

360-420: Is grouped under the User Interface category of the API. Network Services provide access to the various networking abilities of the operating system. Its subcomponents include NetBIOS , Winsock , NetDDE , remote procedure call (RPC) and many more. This component resides in netapi32.dll on 32-bit Windows. The Internet Explorer (IE) web browser exposes APIs and as such could be considered part of

396-492: Is provided by win32k.sys which communicates directly with the graphics driver. The User Interface component provides features to create and manage screen windows and most basic controls, such as buttons and scrollbars , receive mouse and keyboard input, and other functions associated with the graphical user interface (GUI) part of Windows. This functional unit resides in user.exe on 16-bit Windows, and user32.dll on 32-bit Windows. Since Windows XP versions,

SECTION 10

#1732905174952

432-461: Is the basic unit of visual display and input in the Windows developer platform. All visual elements either have their own HWNDs or live as part of a larger HWND . Many functions in Windows USER manipulate properties on HWNDs such as size, position and title. Each HWND also has a communication channel ( WNDPROC - Window Procedure) for delivery of messages. Windows are managed as a tree, with

468-674: Is thrown, the kernel and base libraries unwind the stack running handlers and filters as they are encountered. Eventually, every exception unhandled by the application will be dealt with by the default backstop handler, which pops up the Windows common crash dialog. Windows User Windows USER provides a large part of the core user experience for Microsoft Windows. Historically, it was responsible for: Gradually, as Windows has become larger and better factored, Windows USER has cooperated with other components to provide this functionality: Windows USER implements abstractions that are used to build Windows applications. These include The HWND

504-581: The Platform SDK. Flat assembler FASM allows building Windows programs without using an external linker, even when running on Linux. Windows specific compiler support is also needed for Structured Exception Handling (SEH). This system serves two purposes: it provides a substrate on which language-specific exception handling can be implemented, and it is how the kernel notifies applications of exceptional conditions such as dereferencing an invalid pointer or stack overflow. The Microsoft/Borland C++ compilers had

540-518: The Win32-specific DLLs simple. LCC-Win32 is a C compiler maintained by Jacob Navia, freeware for non-commercial use. Pelles C is a freeware C compiler maintained by Pelle Orinius. Free Pascal is a free software Object Pascal compiler that supports the Windows API. The MASM32 package is a mature project providing support for the Windows API under Microsoft Macro Assembler (MASM) by using custom made or converted headers and libraries from

576-642: The Windows API and the WinRT API, which is implemented in C++ and is object-oriented by design. Windows.pas is a Delphi unit that exposes the features of Windows API – the Pascal equivalent of windows.h . Many Microsoft technologies use the Windows API -- as most software running on Windows does. As middle-ware between Windows API and an application, the following technologies provide some access to Windows API. Some technologies are described as wrapping Windows API, but this

612-748: The Windows API bindingly. To develop software that uses the Windows API, a compiler must be able to use the Microsoft-specific DLLs listed above (COM-objects are outside Win32 and assume a certain vtable layout). The compiler must either handle the header files that expose the interior API function names, or supply such files. For the language C++, Zortech (later Symantec , then Digital Mars ), Watcom and Borland have all produced well known commercial compilers that have been used often with Win16, Win32s, and Win32. Some of them supplied memory extenders , allowing Win32 programs to run on Win16 with Microsoft's redistributable Win32s DLL. The Zortech compiler

648-433: The Windows API has a distinct name that identifies a compatibility aspect of that version. For example, Win32 is the major version of Windows API that runs on 32-bit systems. The name, Windows API, collectively refers to all versions of this capability of Windows. Microsoft provides developer support via a software development kit , Microsoft Windows SDK , which includes documentation and tools for building software based on

684-444: The Windows API support thousands. However, in general, the interface remained fairly consistent, and an old Windows 1.0 application will still look familiar to a programmer who is used to the modern Windows API. Microsoft has made an effort to maintain backward compatibility . To achieve this, when developing new versions of Windows, Microsoft sometimes implemented workarounds to allow compatibility with third-party software that used

720-545: The Windows API to allow executing simple Windows programs from a DOS command line. Odin is a project to emulate Win32 on OS/2 , superseding the original Win-OS/2 emulation which was based on Microsoft code. Other minor implementations include the MEWEL and Zinc libraries which were intended to implement a subset of the Win16 API on DOS (see List of platform-independent GUI libraries ). Windows Interface Source Environment (WISE)

756-416: The Windows API. The name, Windows API, refers to essentially the same capability in each version of Windows, but there is another name for this capability that is based on major architectural aspects of the Windows version that contains it. When there was only one version, it was simply called Windows API. Then, when the first major update was made, Microsoft gave it the name Win32 and gave the first version

SECTION 20

#1732905174952

792-499: The Windows API. This section lists notable services provided by the Windows API. Base services include features such as the file system , devices , processes , threads , and error handling . These functions reside in kernel.exe , krnl286.exe or krnl386.exe files on 16-bit Windows, and kernel32.dll and KernelBase.dll on 32 and 64 bit Windows. These files reside in the folder \Windows\System32 on all versions of Windows. Advanced services include features beyond

828-479: The Windows API. IE has been included with the operating system since Windows 95 OSR2 and has provided web-related services to applications since Windows 98 . The Windows API is a C language -based API. Functions and data structures are consumable via C syntax by including windows.h , but the API can be consumed via any programming language that can inter-operate with the API data structures and calling conventions for function calls and callbacks . Of note,

864-530: The Windows hello-world program." Petzold explains that while it was the first Windows sample programs developers were introduced to, it was quite "fancy" and more complex than needed. Tired of people ridiculing the length of the sample, he eventually reduced it to a simple MessageBox call. Over the years, various changes and additions were made to Windows systems, and the Windows API changed and grew to reflect this. The Windows API for Windows 1.0 supported fewer than 450 function calls , whereas modern versions of

900-454: The ability to use this system as soon as it was introduced in Windows 95 and NT, however the actual implementation was undocumented and had to be reverse engineered for the Wine project and free compilers. SEH is based on pushing exception handler frames onto the stack, then adding them to a linked list stored in thread-local storage (the first field of the thread environment block). When an exception

936-426: The advantage of giving them much flexibility and power over their applications, but also creates great responsibility in how applications handle various low-level, sometimes tedious, operations that are associated with a graphical user interface . For example, a beginning C programmer will often write the simple "hello world" as their first assignment. The working part of the program is only a single printf line within

972-578: The basic controls reside in comctl32.dll , together with the common controls (Common Control Library). The Common Dialog Box Library provides standard dialog boxes to open and save files, choose color and font, etc. The library resides in a file called commdlg.dll on 16-bit Windows, and comdlg32.dll on 32-bit Windows. It is grouped under the User Interface category of the API. The Common Control Library provides access to advanced user interface controls include things like status bars , progress bars , toolbars and tabs . The library resides in

1008-536: The desktop window at the root of the hierarchy. Child windows are usually (but not always) visually contained within their parents. Applications and the operating system communicate with HWNDs using messages. A window message is the combination of a target HWND , a message code, and other details such as mouse position. By combining calls to Windows USER in the right way, a Windows application processes messages. The core Windows message loop (including calls to GetMessage , TranslateMessage and DispatchMessage )

1044-504: The implementation of API functions has been developed in several languages other than C. Despite the fact that C is not an object-oriented programming (OOP) language, the Windows API is somewhat object-oriented due to its use of handles. Various other technologies from Microsoft and others make this object-oriented aspect more apparent by using an OOP language such as C++ -- see Microsoft Foundation Class Library (MFC), Visual Component Library (VCL), GDI+ . Of note, Windows 8 provides

1080-497: The kernel like the Windows registry , shutdown/restart the system (or abort), start/stop/create a Windows service , manage user accounts. These functions reside in advapi32.dll and advapires32.dll on 32-bit Windows. The Graphics Device Interface (GDI) component provides features to output graphics content to monitors , printers , and other output devices . It resides in gdi.exe on 16-bit Windows, and gdi32.dll on 32-bit Windows in user-mode. Kernel-mode GDI support

1116-499: The main subroutine. The overhead for linking to the standard I/O library is also only one line: Charles Petzold , who wrote several books about programming for the Windows API, said: "The original hello world program in the Windows 1.0 SDK was a bit of a scandal. HELLO.C was about 150 lines long, and the HELLO.RC resource script had another 20 or so more lines. (...) Veteran programmers often curled up in horror or laughter when encountering

W32 - Misplaced Pages Continue

1152-501: The name Win16. The term Windows API refers to both versions and all subsequently developed major versions. The Wine project provides a Win32 API compatibility layer for Unix-like platforms, between Linux kernel API and programs written for the Windows API. ReactOS goes a step further and aims to implement the full Windows operating system, working closely with the Wine project to promote code re-use and compatibility. DosWin32 and HX DOS Extender are other projects which emulate

1188-572: The only integrated development environments (IDEs) that could provide this (although, the SDK is downloadable for free separately from the entire IDE suite, from Microsoft Windows SDK for Windows 7 and .NET Framework 4 ). As of 2016 , the MinGW and Cygwin projects also provide such an environment based on the GNU Compiler Collection (GCC), using a stand-alone header file set, to make linking against

1224-473: The prior version in an undocumented or even inadvisable way. Raymond Chen , a Microsoft developer who works on the Windows API, has said: "I could probably write for months solely about bad things apps do and what we had to do to get them to work again (often in spite of themselves). Which is why I get particularly furious when people accuse Microsoft of maliciously breaking applications during OS upgrades. If any application failed to run on Windows 95, I took it as

1260-562: Was a licensing program from Microsoft which allowed developers to recompile and run Windows-based applications on Unix and Macintosh platforms. WISE SDKs were based on an emulator of the Windows API that could run on those platforms. Efforts toward standardization included Sun's Public Windows Interface (PWI) for Win16 (see also: Sun Windows Application Binary Interface ( Wabi )), Willows Software's Application Programming Interface for Windows (APIW) for Win16 and Win32 (see also: Willows TWIN ), and ECMA-234 , which attempted to standardize

1296-602: Was probably one of the first stable and usable C++ compilers for Windows programming, before Microsoft had a C++ compiler. For certain classes of applications, the compiler system should also be able to handle interface description language (IDL) files. Collectively, these prerequisites (compilers, tools, libraries, and headers) are known as the Microsoft Platform SDK . For a time, the Microsoft Visual Studio and Borland 's integrated development system were

#951048