/****************************************************************************** * * fixfile_server.h - include file for the File fix server * * Module %M% Version %I% Date %H% * * (c) Copyright 1998 Ardent Software Inc. - All Rights Reserved * This is unpublished proprietary source code of Ardent Software Inc. * The copyright notice above does not evidence any actual or intended * publication of such source code. * ******************************************************************************* * * Maintenence log - insert most recent change descriptions at top * * Date.... GTAR# WHO Description......................................... * 10/19/98 23768 DJD Module created. * ******************************************************************************/ /* Server token name */ typedef struct FileFixStatus { int level; int fix; int logging; int output; int headerloaded; int filelocked; int fileopened; int errorlevel; } FILEFIXSTATUS, *PFIXFILESTATUS; /* declare our global variables for using the RPC */ EXTERN int num_args_read; EXTERN uvrpcdata args_read[MAX_NUM_RPC_ARGS]; EXTERN int connect_number; EXTERN char *ProcName; /* global defs */ EXTERN int connected; EXTERN char inBuf[]; EXTERN char outBuf[]; /* End of File */