?? msf_psn.h
字號:
/**********************************************************************************
* Copyright (c) 2001 ZORAN Corporation, All Rights Reserved
* THIS IS UNPUBLISHED PROPRIETARY SOURCE CODE OF ZORAN CORPORATION
*
* File: "msf_psn.h"
*
* Description:
* ============
* Definitions for MSF<->PSN<->BCD operations
*
* Log:
* ====
* $Revision: $
* Last Modified by $Author: $ at $Modtime: $
**********************************************************************************
* Updates:
**********************************************************************************
* $Log: $
*
*
*********************************************************************************/
#include "Config.h" /* Global Configuration - do not remove! */
#ifndef MSF_PSN_H
#define MSF_PSN_H
/*** Include Files ***************************************************************/
#include "Include\SysDefs.h"
#include "Drive\Zfe\zfe.h"
/*** Defines *********************************************************************/
/*** Typedefs ********************************************************************/
/*** Public Functions ************************************************************/
UINT32 MSFPSN_Msf2Psn(UINT8 msf_min, UINT8 msf_sec, UINT8 msf_frm);
void MSFPSN_Psn2Msf(UINT32 psn, UINT8 * msf_min, UINT8 * msf_sec, UINT8 * msf_frm);
ZFE_ERR_CODE MSFPSN_ConvBcd2PsnWithChecking(UINT8 bcd_min, UINT8 bcd_sec, UINT8 bcd_frm, UINT32 * psn_p);
ZFE_ERR_CODE MSFPSN_ConvPsn2BcdWithChecking(UINT32 psn, UINT8 * bcd_min, UINT8 * bcd_sec, UINT8 * bcd_frm);
UINT8 MSFPSN_ConvBcd2Hex(UINT8 bcd);
UINT8 MSFPSN_ConvHex2Bcd(UINT8 hex);
#endif
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -