Platform SDK: Win32 API

W

waitable timer object
See timer object.
wait function
A function that blocks the execution of the calling thread until a specified set of conditions has been met.
waiting thread
A thread whose execution is blocked while waiting for a wait function to return. See also wait function.
wide character
A synonym for a Unicode character; Unicode characters are 2 bytes wide.
widened path
A modified path. See also path.
wildcard characters
Characters that represent one or more characters in a filename. The wildcard characters are the question mark (?) and the asterisk (*). The question mark matches any single character; the asterisk matches any combination of characters. For example, if a directory contains files with the names BAT, B12, BOAT, and CAT, the pattern b\* matches the names BAT, B12, and BOAT. The pattern b?t matches only the name BAT.
Win32
The application programming interface in Windows 95, Windows 98, Windows NT, Windows 2000, and Windows CE that enables applications to use the 32-bit instructions available on 80386 and higher processors.
Win32 service
A service that conforms to the interface rules of the Service Control Manger. This enables the Service Control Manager to start the service at system startup or on demand and enables communication between the service and service control programs. A Win32 service can execute in its own process, or it can share a process with other Win32 services. See service, driver service.
Win64
The application programming interface that enables applications to take advantage of 64-bit computing.
window
A rectangle in page space that is used to specify a transformation between page and device space.
window extent
The width or height of the window.
window handle
A value, assigned by the system, that uniquely identifies a window.
Window menu
A pop-up menu, defined mainly by the operating system, that typically contains commands used to set a window's size or position, close a window or application, or activate a different application. See also pop-up menu.
window name
A text string that identifies a window for the user.
window origin
(1) The upper left corner of a window's client area.

(2) The corner of the window from which the extents are measured. (The window-origin coordinates are specified with respect to the page-space origin.)

window procedure
A function, called by the operating system, that controls the appearance and behavior of its associated windows. The procedure receives and processes all messages to these windows.
window style
A named constant that defines an aspect of the window's appearance and behavior not specified by the window's class.
window text
See window name.
Windows directory
The directory that contains Windows-based applications, initialization files, and help files. See also directory.
Windows metafile
One of two metafile formats. This format, used for applications written to run with Windows version 3.x, consists of a header and an array of metafile records. See also metafile record.
Windows time
The number of milliseconds since Windows started running. This time is recorded as a 32-bit value, so it overflows to zero every 49.7 days.
world coordinate space
The coordinate space in which all graphics device interface (GDI) drawing operations begin if an application has set the world-space to page-space transformation.
world space
The coordinate space in which all graphics device interface (GDI) drawing operations begin if an application has set the world-space to page-space transformation. Applications use world space to rotate shear, or reflect graphics output. World space measures 2^(32) units high by 2^(32) units wide, and is one of four coordinate spaces used in the Win32 API. See also device coordinate space, page coordinate space, and physical device.