#ifndef	_DCNCCI_H
#define	_DCNCCI_H

#ifndef	__CCI__

typedef	struct	_dcncmdlist_t
{	struct	_dcncmdlist_t	*next;
	int						typ;
	char					*cmd;
} DCNCMDLIST_T;

#define	DCNCMD_HASH_MAX	(8)

extern DCNCMDLIST_T	*DcnCmdHashTbl[DCNCMD_HASH_MAX];

extern int		DcnSetCommand( CONST char *cmd, int typ );

#endif

#define	DCN_CMDSYS_UNDEF	(0x00)	/* 未定義				*/
#define	DCN_CMDSYS_EXP		(0x08)	/* ネイティブ子プロセス	*/
#define	DCN_CMDSYS_IGNORE	(0x80)	/* 実行禁止				*/
#define	DCN_CMDSYS_SCNSAVE	(0x40)	/* 画面保存				*/
#define	DCN_CMDSYS_CHECK	(0x20)	/* 実行確認				*/

#endif
