📄 umsdisk.h
字号:
/* umsdisk.h - SAMSUNG S5L5005 USB Mass Storage Disk header */
/* Copyright 2005 TAEBAEK Soft Corp. */
/*
modification history
--------------------
02e,11nov05,jmLee restructure for the vendor.
01a,21sep05,jmLee created.
*/
#ifndef __INCumsdiskh
#define __INCumsdiskh
/* Miscellaneous Definitions */
#define NUM_UMS_DISK 1
#define UMS_DISK_RW_RETRY 1
/* Forward Declarations */
IMPORT int umsDiskInit(VOID);
IMPORT int umsDiskBlkRd(int drvNo, ULONG lba, UINT blocks, PUCHAR buffer);
IMPORT int umsDiskBlkWr(int drvNo, ULONG lba, UINT blocks, PUCHAR buffer);
IMPORT int umsDiskAttach(PLOG_DRV pdrv);
IMPORT int umsDiskDetach(PLOG_DRV pdrv);
IMPORT int umsDiskIsAttached(void);
/* User must implement these funtion. */
IMPORT int umsDiskMount(int drvNo);
IMPORT int umsDiskUnmount(int drvNo);
#endif /* __INCumsdiskh */
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -