am_sdvr_delete_record.cc

来自「Motorola synergy audio component」· CC 代码 · 共 70 行

CC
70
字号
/*----------------------------------------------------------------------------//// (c) Copyright Motorola 1997, All rights reserved.// Motorola Confidential Proprietary// Contains Confidential Proprietary information of Motorola, Inc.// Reverse engineering is prohibited.// The copyright notice does not imply publication.////----------------------------------------------------------------------------//------------------------------ DESCRIPTION ---------------------------------//// This file defines AM_SDVR_Delete_Record class.////----------------------------------------------------------------------------//---------------------------- REVISION HISTORY ------------------------------////    Date        Author      Reference Number//    ========    ========    ================//    00-08-09    mtaraba     CR - CSGce55882//                Eliminate file gsm.h from audio manager////    97.10.03    slam        PR - CSGce10240//                - Use constant definition for invalid model id.//    97.05.29    slam        PR - CSGce10240//                - Initial release////---------------------------------------------------------------------------- *///------------------------------- INCLUDES -----------------------------------#include <audio/AM_SDVR_Delete_Record.H>//-------------------------------- CODE --------------------------------------#if 0// class constructorAM_SDVR_Delete_Record :: AM_SDVR_Delete_Record (	AM_SDVR_DELETE_RECORD *delete_record_ptr) {   	delete_ptr = delete_record_ptr;	clear();}// Function to clear voice tag deletion recordvoidAM_SDVR_Delete_Record :: clear ( void ){	delete_ptr->voice_tag.group_id = VR_INVALID_GROUP;	delete_ptr->voice_tag.model_id = TD_VR_INVALID_MODEL_ID;}    // Function to save voice tag deletion datavoidAM_SDVR_Delete_Record :: save( TD_VR_VOICE_TAG voice_tag ){	delete_ptr->voice_tag.group_id = voice_tag.group_id;	delete_ptr->voice_tag.model_id = voice_tag.model_id;}#endif

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?