home *** CD-ROM | disk | FTP | other *** search
- ;*DDK*************************************************************************/
- ;
- ; COPYRIGHT Copyright (C) 1995 IBM Corporation
- ;
- ; The following IBM OS/2 WARP source code is provided to you solely for
- ; the purpose of assisting you in your development of OS/2 WARP device
- ; drivers. You may use this code in accordance with the IBM License
- ; Agreement provided in the IBM Device Driver Source Kit for OS/2. This
- ; Copyright statement may not be removed.;
- ;*****************************************************************************/
- ; SCCSID = %w% %e%
- ;**************************************************************************
- ;*
- ;* SOURCE FILE NAME = DHCALL11I.ASM
- ;*
- ;* DESCRIPTIVE NAME = C callable DevHelp interface
- ;* 32-Bit DevHelp Calls
- ;*
- ;*
- ;* VERSION = V2.0
- ;*
- ;* DATE
- ;*
- ;* DESCRIPTION :
- ;*
- ;* Purpose:
- ;*
- ;*
- ;*
- ;*
- ;* FUNCTIONS :
- ;*
- ;*
- ;*
- ;*
- ;*
- ;*
- ;*
- ;* NOTES : These DevHelps are unique to OS/2 2.x.
- ;*
- ;*
- ;* STRUCTURES
- ;*
- ;* EXTERNAL REFERENCES
- ;*
- ;*
- ;*
- ;* EXTERNAL FUNCTIONS
- ;*
- ;* CHANGE ACTIVITY =
- ;* DATE FLAG APAR CHANGE DESCRIPTION
- ;* -------- ---------- ----- --------------------------------------
- ;* 10/22/93 @V74979 74979 Change return type to USHORT.
- ;* 2/ 5/94 78794 File created
- ;*
- ;****************************************************************************
-
- .xlist
- include dhmacs.inc
- .list
-
- ;*
- ;* 32-Bit DevHelps
- ;*
-
-
- Code segment dword public 'CODE'
- assume CS:Code,DS:_DATA
-
-
- ;*
- ;*
- ;* USHORT APIENTRY DevHlp_GetDescInfo( SEL Selector, PBYTE SelInfo );
- ;*
- ;*
-
-
- DHDef GetDescInfo
- DHArgs SEL, Selector
- DHArgs PBYTE, SelInfo
-
- .386p
-
- mov ax, Stk.Selector
-
- .286p
- DHCall
-
- .386p
- les si, Stk.SelInfo
- mov es:[si][0], ax
- mov es:[si][2], ecx
- mov es:[si][6], edx
-
- .286p
-
- DHRet1
-
-
- Code Ends
- End
-