snmp_rsa_watchdog.c

来自「HIP 硬件设备管理标准接口」· C语言 代码 · 共 45 行

C
45
字号
/*      -*- linux-c -*- * * (C) Copyright IBM Corp. 2004 * * 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.  This * file and program are licensed under a BSD style license.  See * the Copying file included with the OpenHPI distribution for * full licensing terms. * * Author(s): *      W. David Ashley <dashley@us.ibm.com> */#include <SaHpi.h>#include <snmp_rsa_watchdog.h>SaErrorT snmp_rsa_get_watchdog_info(void *hnd,				    SaHpiResourceIdT id,				    SaHpiWatchdogNumT num,				    SaHpiWatchdogT *wdt){	/* Watchdog not supported */        return SA_ERR_HPI_INVALID_CMD;}SaErrorT snmp_rsa_set_watchdog_info(void *hnd,				    SaHpiResourceIdT id,				    SaHpiWatchdogNumT num,				    SaHpiWatchdogT *wdt){	/* Watchdog not supported */        return SA_ERR_HPI_INVALID_CMD;}SaErrorT snmp_rsa_reset_watchdog(void *hnd,				 SaHpiResourceIdT id,				 SaHpiWatchdogNumT num){ 	/* Watchdog not supported */        return SA_ERR_HPI_INVALID_CMD;}

⌨️ 快捷键说明

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