home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / MSJV5-6.ZIP / FORM2.ZIP / PAGE0.ASM < prev    next >
Assembly Source File  |  1990-11-01  |  765b  |  38 lines

  1. ;
  2. ; Page Selection - DLL ENTRY POINT MODULE
  3. ;
  4. ; LANGUAGE      : Microsoft C5.1
  5. ; MODEL         : small
  6. ; ENVIRONMENT   : Microsoft Windows 3.0 SDK
  7. ; STATUS        : operational
  8. ;
  9. ; This module defines the dynamic link library entry point
  10. ; function which calls the Page control registration function.
  11. ;
  12. ;    Eikon Systems, Inc.
  13. ;    989 East Hillsdale Blvd, Suite 260
  14. ;    Foster City, California 94404
  15. ;    415-349-4664
  16. ;
  17. ; 11/30/89 1.00 - Kevin P. Welch - initial creation.
  18. ;
  19.  
  20.          Extrn    PageInit:Far
  21.  
  22. _TEXT    SEGMENT  BYTE PUBLIC 'CODE'
  23.          ASSUME   CS:_TEXT
  24.          PUBLIC   LibEntry
  25.  
  26. LibEntry PROC  FAR
  27.  
  28.          push  di
  29.          call  PageInit
  30.  
  31.          Ret
  32.  
  33. LibEntry ENDP
  34.  
  35. _TEXT    ENDS
  36.  
  37. End      LibEntry
  38.