msg.hhf

来自「High Level assembly language(HLA)软件」· HHF 代码 · 共 53 行

HHF
53
字号
#if( !@defined( msg_hhf ))?msg_hhf := true;namespace linux; @fast;  type		// message data structures:		msgqnum_t	:word;	msglen_t	:word;			msqid_ds: record		msg_perm	:ipc_perm;		msg_first	:dword;		// pointer to msg		msg_last	:dword;		// pointer to msg		msg_stime	:time_t;		msg_rtime	:time_t;		msg_ctime	:time_t;		msg_lcbytes	:dword;		msg_lqbytes	:dword;		msg_cbytes	:word;		msg_qnum	:msgqnum_t;		msg_qbytes	:msglen_t;		msg_lspid	:word;		msg_lrpid	:word;		__dummy		:word;	endrecord;		msginfo: record		msgpool	:dword;		msgmap	:dword;		msgmax	:dword;		msgmnb	:dword;		msgmni	:dword;		msgssz	:dword;		msgtql	:dword;		msgseg	:word;		align(4);	endrecord;		msgbuf: record		mtype	:dword;		__mtext	:char[1];		align(4);	endrecord;	end linux;#endif //msg_hhf

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?