home *** CD-ROM | disk | FTP | other *** search
/ Network Support Encyclopedia 96-1 / novell-nsepro-1996-1-cd2.iso / download / netware / ipxrcv.exe / RHAND.ASM < prev    next >
Assembly Source File  |  1995-08-25  |  631b  |  34 lines

  1. ;** Receive Event Service Routine Handler
  2. ;** for IPXREC. 
  3. ;** Built with MSC MASM 6.00
  4. ;** Karl Bunnell
  5. ;** Novell Developer Support
  6. ;** Date: 08/24/1995
  7.  
  8.  
  9. memL equ 1 ; large model
  10. ?PLM = 1 ; pascal conventions
  11. ?WIN = 1 ; epilogue/prolog code
  12.  
  13.  
  14. INCLUDE cmacros.inc
  15.  
  16. sBegin  CODE
  17.  
  18.     externFP ReceiveESR
  19.  
  20. ;   
  21. ;   This is the front-end procedure to the C function "ReceiveESR"
  22. ;
  23. cProc _ReceiveESRHandler, <FAR,PUBLIC> <ds, ax>
  24. cBegin _ReceiveESRHandler
  25.     mov     ax, DGROUP
  26.     mov     ds, ax
  27.     push    es
  28.     push    si
  29.     cCall   ReceiveESR
  30. cEnd   _ReceiveESRHandler
  31.  
  32. sEnd    CODE
  33.     end
  34.