BVHSVGA.DLL: Difference between revisions
Appearance
No edit summary |
|||
Line 1: | Line 1: | ||
This file is the Base Video Handler for OS/2. Any OS/2 application that sets a video mode calls this DLL. In mode cases, however, the only application that sets any video modes is the PM display driver and the MODE.EXE utility (for setting 132 column modes). The first time this DLL would be called is after the OS/2 bitmap logo appears (PM starts up then). This DLL is specified in the CONFIG.SYS in the following manner: | This file is the Base Video Handler for OS/2. Any OS/2 application that sets a video mode calls this DLL. In mode cases, however, the only application that sets any video modes is the PM display driver and the [[MODE.EXE]] utility (for setting 132 column modes). The first time this DLL would be called is after the OS/2 bitmap logo appears (PM starts up then). This DLL is specified in the [[CONFIG.SYS]] in the following manner: | ||
SET VIO_VGA=DEVICE(BVHVGA,BVHSVGA) | |||
BVHVGA is used to set, save, and restore VGA modes, BVHSVGA for SVGA modes. | BVHVGA is used to set, save, and restore VGA modes, BVHSVGA for SVGA modes. | ||
Line 8: | Line 7: | ||
{| class="wikitable" | {| class="wikitable" | ||
|- | |- | ||
! Date !!Version !! Size | !Date!!Version !!Size !!Comments | ||
|- | |- | ||
|2006-03-22 09:47||14.105||33,712 bytes||Super VGA Base Video Handler by IBM | |||
|} | |} | ||
==DLL Entry Points== | ==DLL Entry Points== | ||
<PRE> | <PRE> | ||
Ordinal Object Offset Name | |||
1 1 0000:0088 SETNUMBER9CLK | |||
2 1 0000:026E SETDIAMONDCLK | |||
3 1 0000:007C _WDSetPanelClk | |||
4 2 0000 DEVENABLE | |||
5 1 0000:0B14 HWINPWORD | |||
6 1 0000:0B07 HWINPBYTE | |||
7 1 0000:002D _WDPanelOn | |||
8 1 0000:0B21 HWOUTPBYTE | |||
9 1 0000:004C _ThinkPadHighestRes | |||
10 1 0000:0B2F HWOUTPWORD | |||
</PRE> | </PRE> | ||
Line 37: | Line 33: | ||
==Source Code== | ==Source Code== | ||
The source code if this DLL is included on the IBM DDK under the terms of its licensing. | The source code if this DLL is included on the IBM DDK under the terms of its licensing. | ||
[[Category:Files]] | [[Category:Files]] |
Revision as of 20:14, 21 August 2016
This file is the Base Video Handler for OS/2. Any OS/2 application that sets a video mode calls this DLL. In mode cases, however, the only application that sets any video modes is the PM display driver and the MODE.EXE utility (for setting 132 column modes). The first time this DLL would be called is after the OS/2 bitmap logo appears (PM starts up then). This DLL is specified in the CONFIG.SYS in the following manner:
SET VIO_VGA=DEVICE(BVHVGA,BVHSVGA)
BVHVGA is used to set, save, and restore VGA modes, BVHSVGA for SVGA modes.
Versions
Date | Version | Size | Comments |
---|---|---|---|
2006-03-22 09:47 | 14.105 | 33,712 bytes | Super VGA Base Video Handler by IBM |
DLL Entry Points
Ordinal Object Offset Name 1 1 0000:0088 SETNUMBER9CLK 2 1 0000:026E SETDIAMONDCLK 3 1 0000:007C _WDSetPanelClk 4 2 0000 DEVENABLE 5 1 0000:0B14 HWINPWORD 6 1 0000:0B07 HWINPBYTE 7 1 0000:002D _WDPanelOn 8 1 0000:0B21 HWOUTPBYTE 9 1 0000:004C _ThinkPadHighestRes 10 1 0000:0B2F HWOUTPWORD
DLLs Loaded
Source Code
The source code if this DLL is included on the IBM DDK under the terms of its licensing.