home *** CD-ROM | disk | FTP | other *** search
/ Troubleshooting Netware Systems / CSTRIAL0196.BIN / attach / msj / v10n12 / plgnplay.exe / T_CTL.ASM < prev    next >
Assembly Source File  |  1995-12-01  |  516b  |  17 lines

  1.          .386p
  2.          include vmm.inc
  3.          include debug.inc
  4.  
  5. Declare_Virtual_Device TELEPATH, 1, 0, TELEPATH_Control, \
  6.                        Undefined_Device_ID, Undefined_Init_Order
  7.  
  8. Begin_Control_Dispatch TELEPATH
  9.  
  10.     Control_Dispatch Sys_Dynamic_Device_Init, _OnSysDynamicDeviceInit, cCall
  11.     Control_Dispatch Sys_Dynamic_Device_Exit, _OnSysDynamicDeviceExit, cCall
  12.     Control_Dispatch PNP_New_Devnode, _OnPnpNewDevnode, cCall, <ebx, edx>
  13.  
  14. End_Control_Dispatch TELEPATH
  15.  
  16.          end
  17.