home *** CD-ROM | disk | FTP | other *** search
- ;
- ; WMF Import Filter - DLL Entry Point Module
- ;
- ; LANGUAGE : Microsoft C 6.0
- ; MODEL : medium
- ; ENVIRONMENT : Microsoft Windows 3.0 SDK
- ; STATUS : operational
- ;
- ; This module defines the dynamic link library entry point
- ; function which calls the WMF Import Filter library mainline.
- ;
- ; Eikon Systems, Inc.
- ; 989 East Hillsdale Blvd, Suite 260
- ; Foster City, California 94404
- ; 415-349-4664
- ;
- ; 08/01/91 1.00 - David E. West - initial creation.
- ; 09/01/91 1.01 - Kevin P. Welch - minor revisions.
- ;
-
- Extrn LibMain:Far
-
- _TEXT SEGMENT BYTE PUBLIC 'CODE'
- ASSUME CS:_TEXT
- PUBLIC LibEntry
-
- LibEntry PROC FAR
-
- Push DI ; hInstance
- Push DS ; Data Segment
- Push CX ; Heap Size
- Push ES
- Push SI ; Command Line
-
- Call LibMain
-
- Ret
-
- LibEntry ENDP
- _TEXT ENDS
-
- End LibEntry
-