eprom.h
Upload User: fy98168
Upload Date: 2015-06-26
Package Size: 13771k
Code Size: 0k
Category:

DVD

Development Platform:

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