30 lines
		
	
	
		
			653 B
		
	
	
	
		
			C
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			30 lines
		
	
	
		
			653 B
		
	
	
	
		
			C
		
	
	
		
			Executable File
		
	
	
	
	
#ifndef _DRIVEREXT_H_
 | 
						|
#define _DRIVEREXT_H_
 | 
						|
 | 
						|
#include "kwrap/type.h"
 | 
						|
#include "kwrap/error_no.h"
 | 
						|
//#include "kwrap/debug.h"
 | 
						|
//#include "utility.h"
 | 
						|
#include "modelext_info.h"
 | 
						|
 | 
						|
// Init IO for external device
 | 
						|
extern void Dx_InitIO(void);
 | 
						|
// Uninit IO for external device
 | 
						|
extern void Dx_UninitIO(void);
 | 
						|
// Get modelext resource
 | 
						|
extern UINT8 *Dx_GetModelExtCfg(MODELEXT_TYPE type, MODELEXT_HEADER **header);
 | 
						|
 | 
						|
// command
 | 
						|
extern BOOL Dx_OnCommand(CHAR *pcCmdStr);
 | 
						|
 | 
						|
// Install driver ext OS resource
 | 
						|
extern void Install_DrvExt(void);
 | 
						|
 | 
						|
/////////////////////////////////////////
 | 
						|
// DriverExt
 | 
						|
 | 
						|
#include "DxStorage.h"
 | 
						|
#include "DxDisplay.h"
 | 
						|
 | 
						|
#endif //_DRIVEREXT_H_
 |