/*---------------------------------------------------------------------* Project: TexConv File: input.h Copyright 1998-2001 Nintendo. All rights reserved. These coded instructions, statements and computer programs contain proprietary information of Nintendo of America Inc. and/or Nintendo Company Ltd., and are protected by Federal copyright law. They may not be disclosed to third parties or copied or duplicated in any form, in whole or in part, without the prior written consent of Nintendo. Change History: $Log: input.h,v $ Revision 1.2 2008/05/23 04:15:42 iwai_yuma Improved for handling of VC2005. Revision 1.1 2006/02/17 09:03:28 mitu 1st version 2 4/11/01 3:16p John Updated header copyrights and pathname. 1 12/03/99 3:48p Ryan 1 10/12/99 7:44p Mikepc renamed copy of io.h to resolve name conflict. 6 10/08/99 2:56p Mikepc renoved "ifdef __cplusplus" statement- tc is now a .cpp project; extern 'c' linkage is gone for tplConv.lib 5 8/26/99 11:36a Mikepc 4 8/26/99 11:05a Mikepc tc rewrite to include batch file processing $NoKeywords: $ -----------------------------------------------------------------------*/ #ifndef __INPUT_H__ #define __INPUT_H__ #define IO_NOT_DONE 0 #define IO_DONE 1 #define IO_QUIT 2 #define SRC_TXT_FILE_SIZE 255 #define DST_TPL_FILE_SIZE 255 void ShowConverterTitle(); int GetFileNames( char* inputFile, char* outputFile ); int GetFileName( char* promptString, char* fileName, const unsigned int bufSize ); int CheckYN( char* fileName ); #endif // __INPUT_H__