You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
41 lines
1.1 KiB
C
41 lines
1.1 KiB
C
|
|
/***************************************************************************
|
|
* *
|
|
* Module : banull.h *
|
|
* *
|
|
* Purpose : NULL device header *
|
|
* *
|
|
**************************************************************************/
|
|
|
|
#ifndef RWNULL_H
|
|
#define RWNULL_H
|
|
|
|
/****************************************************************************
|
|
Includes
|
|
*/
|
|
|
|
/****************************************************************************
|
|
Defines
|
|
*/
|
|
|
|
/****************************************************************************
|
|
Global Types
|
|
*/
|
|
|
|
/****************************************************************************
|
|
Function prototypes
|
|
*/
|
|
|
|
#ifdef __cplusplus
|
|
extern "C"
|
|
{
|
|
#endif /* __cplusplus */
|
|
|
|
extern RwDevice * _rwDeviceGetHandle(void);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif /* __cplusplus */
|
|
|
|
#endif /* RWNULL_H */
|