1 /* BEGIN INCLUDE FILE ... new_driver_msg.incl */
 2 
 3 dcl new_driver_msg_p ptr;
 4 
 5 dcl 1 new_driver_msg aligned based (new_driver_msg_p),
 6       2 wakeup_chan fixed bin (71),               /* event channel for waking driver */
 7       2 lock_id bit (36),                         /* driver's lock id */
 8       2 device_index fixed bin,                   /* index of minor device wanted by driver */
 9       2 dev_class_index fixed bin;                /* index of device class entry wanted by driver */
10 
11 /* END INCLUDE FILE ... new_driver_msg.incl.pl1 */