⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 am_sdvr_delete_record.cc

📁 Motorola synergy audio component
💻 CC
字号:
/*----------------------------------------------------------------------------//// (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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -