mirror of https://github.com/lianthony/NT4.0
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
688 B
26 lines
688 B
/**
|
|
Copyright(c) Maynard Electronics, Inc. 1984-91
|
|
|
|
Name: mslreq.h
|
|
|
|
Description: This contains the structure definition for the MSL request
|
|
structure. This is passed, filled in, to BuildTCB.
|
|
|
|
$Log: Q:/LOGFILES/MSLREQ.H_V $
|
|
|
|
Rev 1.0 17 Jul 1991 14:51:40 ED
|
|
Initial revision.
|
|
**/
|
|
|
|
#include "stdtypes.h"
|
|
|
|
typedef struct {
|
|
INT16 gen_func_code ; /* generic function code */
|
|
UINT8_PTR baddr ; /* buffer address */
|
|
UINT32 length ; /* length of buffer */
|
|
INT16 misc ; /* miscellaneous */
|
|
UINT32 parm1 ; /* misc param. */
|
|
} MSL_REQUEST, *MSL_REQUEST_PTR ;
|
|
|
|
|
|
|