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