Diff for /np2/embed/menu/filesel.c between versions 1.6 and 1.8

version 1.6, 2004/02/14 08:12:18 version 1.8, 2004/06/19 17:28:29
Line 20  enum { Line 20  enum {
         DID_FILTER          DID_FILTER
 };  };
   
 static const BYTE str_dirname[] = {             // ファイルの場所  #if !defined(CHARSET_OEM) || defined(OSLANG_SJIS)
                 0xcc,0xa7,0xb2,0xd9,0x82,0xcc,0x8f,0xea,0x8f,0x8a,0};  static const char str_dirname[] =                               // ファイルの場所
 static const BYTE str_filename[] = {    // ファイル名                          "\203\164\203\100\203\103\203\213\202\314\217\352\217\212";
                 0xcc,0xa7,0xb2,0xd9,0x96,0xbc,0};  static const char str_filename[] =                              // ファイル名
 static const BYTE str_filetype[] = {    // ファイルの種類                          "\203\164\203\100\203\103\203\213\226\274";
                 0xcc,0xa7,0xb2,0xd9,0x82,0xcc,0x8e,0xed,0x97,0xde,0};  static const char str_filetype[] =                              // ファイルの種類
 static const BYTE str_open[] = {                // 開く                          "\203\164\203\100\203\103\203\213\202\314\216\355\227\336";
                 0x8a,0x4a,0x82,0xad,0};  static const char str_open[] =                                  // 開く
                           "\212\112\202\255";
   #elif defined(OSLANG_EUC)
   static const char str_dirname[] =                               // ファイルの場所
                           "\245\325\245\241\245\244\245\353\244\316\276\354\275\352";
   static const char str_filename[] =                              // ファイル名
                           "\245\325\245\241\245\244\245\353\314\276";
   static const char str_filetype[] =                              // ファイルの種類
                           "\245\325\245\241\245\244\245\353\244\316\274\357\316\340";
   static const char str_open[] =                                  // 開く
                           "\263\253\244\257";
   #elif defined(OSLANG_UTF8)
   static const char str_dirname[] =                               // ファイルの場所
                           "\343\203\225\343\202\241\343\202\244\343\203\253\343\201\256" \
                           "345\240\264\346\211\200";
   static const char str_filename[] =                              // ファイル名
                           "\343\203\225\343\202\241\343\202\244\343\203\253\345\220\215";
   static const char str_filetype[] =                              // ファイルの種類
                           "\343\203\225\343\202\241\343\202\244\343\203\253\343\201\256" \
                           "\347\250\256\351\241\236";
   static const char str_open[] =                                  // 開く
                           "\351\226\213\343\201\217";
   #else
   static const char str_dirname[] = "Look in";
   static const char str_filename[] = "File name";
   static const char str_filetype[] = "Files of type";
   static const char str_open[] = "Open";
   #endif
   
 #if defined(SIZE_QVGA)  #if defined(SIZE_QVGA)
 enum {  enum {

Removed from v.1.6  
changed lines
  Added in v.1.8


RetroPC.NET-CVS <cvs@retropc.net>