📄 xversion.c
字号:
/* Copyright (c) 1995 Entropic Research Laboratory, Inc. *//* * This material contains unpublished, proprietary software of * Entropic Research Laboratory, Inc. Any reproduction, distribution, * or publication of this work must be authorized in writing by Entropic * Research Laboratory, Inc., and must bear the notice: * * "Copyright (c) 1986-1990 Entropic Speech, Inc. * "Copyright (c) 1990-1993 Entropic Research Laboratory, Inc. * All rights reserved" * * The copyright notice above does not evidence any actual or intended * publication of this source code. * * Written by: Rodney Johnson, ESI * Checked by: * Revised by: * * Brief description: * xversion -- version information for program "xwaves" */static char *sccs_id = "@(#)xversion.c 1.29 28 Oct 1999 ATT/ERL";#include <stdio.h>#include <esps/esps.h>char *ProgName = "xwaves";char *Version = "5.3.1";char *Date = "28 Oct 1999"; static char *VersionFile = "version5.3";voidset_pvd(hdr) struct header *hdr;{ (void) strcpy(hdr->common.prog, ProgName); (void) strcpy(hdr->common.vers, Version); (void) strcpy(hdr->common.progdate, Date);}/* * check the version of the base esps/waves installation. This version * requires ESPS 5.3 in order to work*/intcheck_version(){ char *str; str = find_esps_file(NULL,VersionFile,"$ESPS_BASE",NULL); if (str == NULL) { fprintf(stderr, "\nThis version of xwaves only runs with ESPS/waves 5.3\n"); fprintf(stderr, "You need the 5.3 upgrade CD-ROM. Please send mail to:\n"); fprintf(stderr, " sales@entropic.com\n"); fprintf(stderr, "Be sure to include your customer number and site name.\n\n"); exit(0); } }
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -