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

  1.      .386p
  2.      include vmm.inc
  3.      include debug.inc
  4.  
  5. Declare_Virtual_Device SCHOOL, 1, 0, SCHOOL_Control, \
  6.                Undefined_Device_ID, Undefined_Init_Order
  7.  
  8. Begin_Control_Dispatch SCHOOL
  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.     Control_Dispatch W32_DeviceIoControl, _OnDeviceIoControl, cCall, <esi>
  14.  
  15. End_Control_Dispatch SCHOOL
  16.  
  17.      end
  18.