/* MCONFIG.C * * MIDAS Sound System configuration. Meant to be used with the simplified * MIDAS API, MIDAS.C * * $Id: mconfig.h,v 1.2 1997/01/16 18:41:59 pekangas Exp $ * * Copyright 1996,1997 Housemarque Inc. * * This file is part of the MIDAS Sound System, and may only be * used, modified and distributed under the terms of the MIDAS * Sound System license, LICENSE.TXT. By continuing to use, * modify or distribute this file you indicate that you have * read the license and understand and accept it fully. */ #ifndef __MCONFIG_H #define __MCONFIG_H #ifdef __cplusplus extern "C" { #endif /****************************************************************************\ * * Function: int midasConfig(void) * * Description: MIDAS Sound System configuration. Prompts the user for all * configuration information and sets the MIDAS variables * accordingly. Call before midasInit() but after * midasSetDefaults(). * * Returns: 1 if configuration was successful, 0 if not (Esc was pressed) * \****************************************************************************/ int CALLING midasConfig(void); /****************************************************************************\ * * Function: void midasLoadConfig(char *fileName); * * Description: Loads configuration from file saved using midasSaveConfig(). * * Input: char *fileName configuration file name, ASCIIZ * \****************************************************************************/ void CALLING midasLoadConfig(char *fileName); /****************************************************************************\ * * Function: void midasSaveConfig(char *fileName); * * Description: Saves configuration to a file * * Input: char *fileName configuration file name, ASCIIZ * \****************************************************************************/ void CALLING midasSaveConfig(char *fileName); #ifdef __cplusplus } #endif #endif /* * $Log: mconfig.h,v $ * Revision 1.2 1997/01/16 18:41:59 pekangas * Changed copyright messages to Housemarque * * Revision 1.1 1996/05/22 20:49:33 pekangas * Initial revision * */