The ultimate result of the compilation of assembly language or any high-level language, such as C++ sequences of bytes that are loaded and executed by a microprocessor. Machine code is the only language that computers "understand"; all other programming languages represent ways of structuring human language so that humans can get computers to perform specific tasks.
A Macintosh resource file that has been created from a Windows resource script (.RC) and compiled using the Windows Portability Library version of the Windows Resource Compiler (RC.EXE). By default, .RSC is the filename extension for Macintosh binary resource files.
A command-line tool, MRC.EXE, controlled by a .R resource script file, that compiles an application's Macintosh-specific resources.
In C/C++, the process of replacing a macro name (defined with a #define directive) in the source code with the body of the macro during compilation.
Or main window. In an SDI application, the window that serves as the primary interface between the user and the application.
The primary window responsible for coordinating the frame with its view. In an SDI application, the document frame window is also the main frame window. In an MDI application, document windows are child windows displayed in the main frame window. The styles and other characteristics of frame windows are inherited from the main frame-window class.
The main loop in an application that retrieves messages from a message queue and dispatches them to the appropriate window procedures. The main message loop takes over when there is no secondary loop to handle a particular message. Every application for Windows has a main message loop. See also message queue.
In a software version number, the number on the left of the decimal point. For example, the major version number of Windows NT version 3.51 is 3. See also minor version number.
A file that contains all commands, macro definitions, options, and so on to specify how to build the projects in a project workspace. A makefile has the filename extension .MAK and usually has the same base name as the workspace configuration (.MDP) file.
Or symbolic constant. In C/C++, an identifier defined in a #define preprocessor directive to represent a constant value. For example, #define PI 3.14
declares a manifest constant named PI
. In C++, the keyword const can be used in place of the #define directive for declaring a constant.
A text file that contains information about the program being linked, including the groups in the program and a list of public symbols. The linker names the mapfile with the base name of the program and the filename extension .MAP.
A set of functions that is part of the Win32 API that applications use to create, manipulate, transfer, and store various kinds of communications, such as e-mail messages. It provides application development tools for defining message purpose and content, and allows flexible management of stored messages. MAPI also provides a common development interface for creating communication-enabled and communication-aware applications independent of the underlying messaging system.
In OLE, the process of packaging and sending interface parameters across process boundaries. See also Remote Procedure Call (RPC).
A bitmap that selectively lets through or screens out values in another bitmap. This is accomplished by combining the two bitmaps in a bitwise logical operation.
An application window enlarged to fill the entire desktop, a document window enlarged to fill the entire application workspace, or a client window enlarged to fill the client area of the client window. See also minimized window.
A character set in which each character is represented as either a 1-byte or 2-byte value. The standard ASCII character set is a subset of the MBCS, which is used for languages that require a set of more than 256 characters. See also double-byte character set (DBCS), lead byte, trail byte, Unicode.
The standard user-interface architecture for Windows-based applications. A multiple document interface application enables the user to work with more than one document at the same time. Each document is displayed within the client area of the application's main window. See also child window, client area, single document interface (SDI).
In C/ C++, one of the elements of a structure, union, or (in C++) a class. In a class, both variables and functions are considered members of the class.
In C++, a function declared inside a class definition. A class's member functions are used to get and set data members, display information to the user, and manipulate data according to the needs of the program. See also data member.
Any item of data that is associated with a particular object. Each instance of a class has its own copy of the instance variables defined in the class. Called instance variables in Java. See also static member variable.
Part of the functionality of C++ that prevents data from being used in ways that the programmer did not intend. Member-access control is implemented by specifying class members as private, protected, or public.
Or allocation. A response by the operating system to a request from a program for memory. The two basic types of memory allocation are static allocation, in which memory is set aside when the program starts and remains allocated while the program is running, and dynamic allocation, in which memory is allocated and deallocated while the program is running.
A section of random-access memory temporarily assigned to a program by the operating system.
A block of memory that represents a display surface. A memory device context can be used to prepare images in memory before copying them to the actual display surface of the compatible device.
A loss of memory resources that occurs when memory is allocated on the heap and never deallocated to make it available for reuse.
The approach used to address the code and data used in a computer program. The memory model dictates how much memory can be used in a program for code and how much for data. Most computers with a flat address space support only a single memory model. Computers with a segmented address space usually support multiple memory models. For example, in the 16-bit Microsoft C small memory model, code, data, and data arrays can each be a maximum of 64K in total memory.
A collection of information that defines the appearance and function of an application menu. This information includes the text strings that appear in an application's menu bar, menu-item identifiers, the arrangement of the menus and status of menu items.
Or menu-item ID. The command identifier chosen for a menu command during the creation of a menu item. Menu-item identifiers can be preassigned values (for example, assigned by the Microsoft Foundation Class Library) or values specified by the programmer. ID_EDIT_CLEAR_ALL is the preassigned menu-item ID for a Clear All command on the Edit menu.
A structure or set of parameters used for communicating information or a request. Messages can be passed between the operating system and an application, different applications, threads within an application, and windows within an application.
A window that displays information to the user. For example, a message box can inform the user of a problem that the application has encountered while carrying out a task.
A set of macros that extract useful information from the parameters of a message and hide the details of how information is packed.
A filter that an application uses to retrieve specific messages from the message queue (while ignoring other messages). The filter is a range of message identifiers (specified by a first and last identifier), a window handle, or both.
In Windows, an object, such as a view or frame window, that provides handler functions to process messages.
The act of responding to messages received from the operating system. Applications use message-handling functions to process messages.
A program loop that retrieves messages from a thread's message queue and dispatches them to the appropriate window procedures. See also message queue.
A mechanism to route Windows messages and commands to the windows, documents, views, and other objects in an MFC application. Message maps map Windows messages, commands from menus, toolbar buttons, accelerators and control-notification messages. A collection of macros in a class's source (.CPP) file specify which functions will handle various messages for the class.
The use of functions to reduce storage requirements, required, for example, when using DDE under Win32s.
A program loop that retrieves messages from a thread's message queue, translates them, offers them to the dialog manager, informs the MDI manager about them, and dispatches them to the application. See also message queue.
A repository for window messages awaiting processing by a thread. The system message queue holds mouse and keyboard input waiting to be passed to a thread's message queue. A thread's message queue holds messages waiting to be retrieved by a thread's message loop.
In MFC, a feature that allows notification messages to be handled in either a child control window or the parent window, or in both.
Or event-driven. A programming model in which the state of the running program changes in response to user actions and other events. These events cause the operating system to send messages to the part of the application that can handle the event.
In Windows, a function that responds to a message using parameters that have been translated from wParam and lParam and passed to the function. A message-handler function might track mouse activity or call member functions of the document to update its data.
An individual item in a message-map table that specifies the handler for a particular message. The framework searches the table for each incoming message and calls the handler for it automatically. See also message map.
One of the macros supplied by the Microsoft Foundation Class Library and used in a message map to specify which messages will be handled by which functions. Message-map macros are available to map Windows messages, command messages, and ranges of messages.
A set of functions that is part of the Win32 API that applications use to create, manipulate, transfer, and store various kinds of communications, such as e-mail messages. It provides application development tools for defining message purpose and content, and allows flexible management of stored messages. MAPI also provides a common development interface for creating communication-enabled and communication-aware applications independent of the underlying messaging system.
A collection of structures that stores a picture in a device-independent format. A metafile defines an image as coded lines and shapes. Win32 uses enhanced-format metafiles, which have a .EMF filename extension. Windows metafiles, which have a .WMF filename extension, are used in Windows 3.x.
In object-oriented programming, a procedure that provides access to an object's data. In C++, public member functions are the equivalent of methods.
A set of C++ classes that encapsulate much of the functionality of applications written for the Microsoft Windows operating systems.
A set of C++ classes that encapsulate much of the functionality of applications written for the Microsoft Windows operating systems.
Microsoft’s implementation and extension of the OSF-DCE Interface Definition Language.
A Web server integrated into Windows NT Server which provides FTP, HTTP, and Gopher services.
Microsoft’s implementation and extension of the OSF-DCE Interface Definition Language.
A Web server integrated into Windows NT Server which provides FTP, HTTP, and Gopher services.
A standard that allows binary data to be published and read on the Internet. The header of a file with binary data contains the MIME type of the data; this informs client programs (Web browsers and mail packages, for instance) that they will need to handle the data some way other than they handle straight text. For example, the header of a Web document containing a JPEG graphic contains the MIME type specific to the JPEG file format. This allows a browser to display the file with its JPEG viewer, if one is present.
A type of server that can only be launched from a container and that only supports embedding, not linking. Objects created by mini-servers are always stored within compound documents, never as individual files. Microsoft Draw is an example of a mini-server. See also full-server application.
A feature that permits the build engine to analyze dependencies within your project and to skip compilation of files that it detects are unaffected by a change, even if those files include changed headers.
A window that has been shrunk to an icon. See also maximized window.
In a software version number, the number on the right of the decimal point. For example, the minor version number of Microsoft Windows NT version 3.51 is 51. See also major version number.
In a graphical user interface, underlined letters in the text of menu and dialog-box items. When the menu and dialog-box items are active, the user can select the item by pressing the key that corresponds to the underlined letter. See also access key.
A restrictive or limiting interaction created by a given condition of operation. Modal often describes a secondary window that restricts a user's interaction with other windows. A secondary window can be modal with respect to its primary window or to the entire system. A modal dialog box must be closed by the user before the application continues. See also modeless, system modal dialog box.
A message-processing loop during which the system retrieves and dispatches messages without allowing an application the opportunity to filter the messages in its main message loop.
Not restrictive or limiting interaction. "Modeless" often describes a secondary window that does not restrict a user's interaction with other windows. A modeless dialog box stays on the screen and is available for use at any time but also permits other user activities. See also modal.
A keyboard key that changes the action of normal input when it is pressed. For example, CTRL, ALT, and SHIFT are modifier keys.
A text file that contains one or more statements describing various attributes of an executable module. Module-definition files usually have a .DEF filename extension. See also dynamic-link library file.
An object that supports the IMoniker interface, which includes the IPersistStream interface; thus, monikers can be saved to and loaded from streams. Monikers can be saved to persistent storage, and they support binding.
A World Wide Web browser written by NCSA.
A file list, control of which is supported by the CRecentFileList class in MFC. Files can be added to or deleted from the MRU file list. The file list can be read from or written to the registry or an .INI file, and the menu displaying the MRU file list is updatable.
To make a volume (a physical disk) accessible to a computer's file system. The volume could be a local drive or one accessed through a network connection. The term usually describes accessing disks in Apple Macintosh and UNIX-based computers.
The act of channeling mouse input to a specific window without regard to the position of the mouse-cursor hot spot.
An input event that occurs whenever the user moves the mouse, or presses or releases a mouse button. Windows converts mouse input events into messages and posts them to the appropriate thread's message queue. See also mouse message.
A message sent to a window when a mouse event occurs while the cursor is within the borders of the window, or when the window has captured the mouse. Mouse messages are divided into two groups: client-area messages and nonclient-area messages. See also mouse capture.
Compression algorithms for both video and sound. There are multiple standard levels for MPEG (MPEG1, MPEG2, and so on). Movies saved in the MPEG format are highly compressed and consume much less disk space than would normally be required.
The Internet Engineering Task Force (IETF) standard for aggregating multiple ISDN B channels using synchronous PPP framing.
Compression algorithms for both video and sound. There are multiple standard levels for MPEG (MPEG1, MPEG2, and so on). Movies saved in the MPEG format are highly compressed and consume much less disk space than would normally be required.
A command-line tool, MRC.EXE, controlled by a .R resource script file, that compiles an application's Macintosh-specific resources.
A file list, control of which is supported by the CRecentFileList class in MFC. Files can be added to or deleted from the MRU file list. The file list can be read from or written to the registry or an .INI file, and the menu displaying the MRU file list is updatable.
A character set in which each character is represented as either a 1-byte or 2-byte value. The standard ASCII character set is a subset of the MBCS, which is used for languages that require a set of more than 256 characters. See also double-byte character set (DBCS), lead byte, trail byte, Unicode.
A text box that displays more than one line of text. In a multiline edit control, data that is too long to fit on one line can either wrap to the next line or extend beyond the right boundary of the box.ox. See also single-line edit control.
The Internet Engineering Task Force (IETF) standard for aggregating multiple ISDN B channels using synchronous PPP framing.
The standard user-interface architecture for Windows-based applications. A multiple document interface application enables the user to work with more than one document at the same time. Each document is displayed within the client area of the application's main window. See also child window, client area, single document interface (SDI).
More than one kind of document — for example, a text document and a graphics document. In an application (such as Microsoft Excel) that supports multiple document types, each document type puts its own menus into the menu bar and changes the main frame window's caption.
A list box in which more than one item can be selected at the same time.
A standard that allows binary data to be published and read on the Internet. The header of a file with binary data contains the MIME type of the data; this informs client programs (Web browsers and mail packages, for instance) that they will need to handle the data some way other than they handle straight text. For example, the header of a Web document containing a JPEG graphic contains the MIME type specific to the JPEG file format. This allows a browser to display the file with its JPEG viewer, if one is present.
An application capable of carrying out multiple, independent paths of execution (or threads) at the same time. For example, an application may have additional threads to handle background or maintenance tasks so that the user doesn't have to wait for a task to complete before continuing to work with the application. See also user-interface thread, worker thread, apartment-model threading, free threading model, single threading model.
In interprocess communication, a synchronization object whose state is signaled when it is not owned by a thread and nonsignaled when it is owned. Only one thread at a time can own a mutex.