eprom.h
上传用户:fy98168
上传日期:2015-06-26
资源大小:13771k
文件大小:0k
源码类别:

DVD

开发平台:

C/C++

  1. #ifndef __EPROM_H
  2. #define __EPROM_H
  3. #ifdef __cplusplus
  4. extern "C" {
  5. #endif
  6. /* Includes --------------------------------------------------------------- */
  7. #include "gendef.h"
  8. INT32 KB_E2PInit(void);
  9. INT32 KB_E2PGetSize(void);
  10. INT32 KB_E2PRead(UINT32 offset, UINT8 *data, UINT32 byteCount, UINT32 *byteRead);
  11. INT32 KB_E2PWrite(UINT32 offset, UINT8 *data, UINT32 byteCount, UINT32 *byteWrite);
  12. #ifdef __cplusplus
  13. }
  14. #endif
  15. #endif