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

📄 am_sdvr_capture_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_Capture_Record class.////----------------------------------------------------------------------------//---------------------------- REVISION HISTORY ------------------------------////    Date        Author      Reference Number//    ========    ========    ================//    00-08-09    mtaraba     CR - CSGce55882//                Eliminate file gsm.h from audio manager//////    99-01-13    jkraisor    CR - CSGce26811//                VA/VR FDI Interface Completion//                - Added  group_id to the structure used for this record.////    97.05.29    slam        PR - CSGce10240////---------------------------------------------------------------------------- *///------------------------------- INCLUDES -----------------------------------#include <audio/AM_SDVR_Capture_Record.H>//-------------------------------- CODE --------------------------------------// class constructorAM_SDVR_Capture_Record :: AM_SDVR_Capture_Record (	AM_SDVR_CAPTURE_RECORD *capture_record_ptr) {   	capture_ptr = capture_record_ptr;	clear();}// Function to clear capture recordvoidAM_SDVR_Capture_Record :: clear ( void ){	capture_ptr->repetition = 0;	capture_ptr->time = 0;	capture_ptr->group_id = VR_INVALID_GROUP;}    // Function to save capture datavoidAM_SDVR_Capture_Record :: save( UINT16 repetition, UINT16 time, TD_VR_GROUP_TYPE group_id){	capture_ptr->repetition = repetition;	capture_ptr->time = time;	capture_ptr->group_id = group_id;}

⌨️ 快捷键说明

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