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.1  2006/02/17 09:03:28  mitu
17  1st version
18 
19 
20     2     4/11/01 3:16p John
21     Updated header copyrights and pathname.
22 
23     1     12/03/99 3:48p Ryan
24 
25     1     10/12/99 7:44p Mikepc
26     renamed copy of io.h to resolve name conflict.
27 
28     6     10/08/99 2:56p Mikepc
29     removed "ifdef __cplusplus" statement- tc is now a .cpp project; extern
30     'c' linkage is gone for tplConv.lib
31 
32     5     8/26/99 11:36a Mikepc
33 
34     4     8/26/99 11:05a Mikepc
35     tc rewrite to include batch file processing
36 
37  $NoKeywords: $
38 
39 -----------------------------------------------------------------------*/
40 
41 
42 
43 #ifndef __INPUT_H__
44 #define __INPUT_H__
45 
46 
47 
48 #define IO_NOT_DONE     0
49 #define IO_DONE         1
50 #define IO_QUIT         2
51 
52 
53 void ShowConverterTitle();
54 int  GetFileNames( char* inputFile,    char* outputFile );
55 int  GetFileName(  char* promptString, char* fileName   );
56 int  CheckYN(      char* fileName                       );
57 
58 
59 
60 #endif  // __INPUT_H__
61