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

📄 t35.h

📁 传真通信V27 V29 V17 T38解调与解码
💻 H
字号:
/* * SpanDSP - a series of DSP components for telephony * * t35.h - ITU T.35 FAX non-standard facility processing. * * Written by Steve Underwood <steveu@coppice.org> * * Copyright (C) 2003 Steve Underwood * * All rights reserved. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License version 2, as * published by the Free Software Foundation. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. * * $Id: t35.h,v 1.11 2007/04/08 08:16:18 steveu Exp $ *//*! \file */#if !defined(_SPANDSP_T35_H_)#define _SPANDSP_T35_H_/*! \page t35_page T.35 manufacturer specific processing for FAX machines\section t35_page_sec_1 What does it do????.\section t35_page_sec_2 How does it work????.*/extern const char *t35_country_codes[256];#if defined(__cplusplus)extern "C"{#endif/*! Decode an NSF field to try to determine the make and model of the    remote machine.    \brief Decode an NSF field.    \param msg The NSF message.    \param len The length of the NSF message.    \param country A pointer which will be pointed to the identified country of origin.           If a NULL pointer is given, the country of origin will not be returned.           If the country of origin is not identified, NULL will be returned.    \param vendor A pointer which will be pointed to the identified vendor.           If a NULL pointer is given, the vendor ID will not be returned.           If the vendor is not identified, NULL will be returned.    \param model A pointer which will be pointed to the identified model.           If a NULL pointer is given, the model will not be returned.           If the model is not identified, NULL will be returned.    \return TRUE if the machine was identified, otherwise FALSE.*/int t35_decode(const uint8_t *msg, int len, const char **country, const char **vendor, const char **model);#if defined(__cplusplus)}#endif#endif/*- End of file ------------------------------------------------------------*/

⌨️ 快捷键说明

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