1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99
|
/*
TiMidity++ -- MIDI to WAVE converter and player
Copyright (C) 1999-2002 Masanao Izumo <mo@goice.co.jp>
Copyright (C) 1995 Tuukka Toivonen <tt@cgs.fi>
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#ifndef __W32G2_PREF_H__
#define __W32G2_PREF_H__
extern volatile int PrefWndDoing;
void PrefWndCreate(HWND hwnd);
#ifdef AU_GOGO
// _CAȌقƂǂ̂܂ܕۑB
// R{{bNXɂĂ Index ͖ӖȂ̂ŒlۑB
typedef struct gogo_ConfigDialogInfo_t_ {
int optIDC_CHECK_DEFAULT;
int optIDC_CHECK_COMMANDLINE_OPTS;
char optIDC_EDIT_COMMANDLINE_OPTION[1024+1];
int optIDC_CHECK_OUTPUT_FORMAT;
int optIDC_COMBO_OUTPUT_FORMAT;
int optIDC_CHECK_MPEG1AUDIOBITRATE;
int optIDC_COMBO_MPEG1_AUDIO_BITRATE;
int optIDC_CHECK_MPEG2AUDIOBITRATE;
int optIDC_COMBO_MPEG2_AUDIO_BITRATE;
int optIDC_CHECK_ENHANCED_LOW_PASS_FILTER;
char optIDC_EDIT_LPF_PARA1[4+1];
char optIDC_EDIT_LPF_PARA2[4+1];
int optIDC_CHECK_ENCODE_MODE;
int optIDC_COMBO_ENCODE_MODE;
int optIDC_CHECK_EMPHASIS_TYPE;
int optIDC_COMBO_EMPHASIS_TYPE;
int optIDC_CHECK_OUTFREQ;
char optIDC_EDIT_OUTFREQ[6+1];
int optIDC_CHECK_MSTHRESHOLD;
char optIDC_EDIT_MSTHRESHOLD_THRESHOLD[4+1];
char optIDC_EDIT_MSTHRESHOLD_MSPOWER[4+1];
int optIDC_CHECK_USE_CPU_OPTS;
int optIDC_CHECK_CPUMMX;
int optIDC_CHECK_CPUSSE;
int optIDC_CHECK_CPU3DNOW;
int optIDC_CHECK_CPUE3DNOW;
int optIDC_CHECK_CPUCMOV;
int optIDC_CHECK_CPUEMMX;
int optIDC_CHECK_CPUSSE2;
int optIDC_CHECK_VBR;
int optIDC_COMBO_VBR;
int optIDC_CHECK_VBR_BITRATE;
int optIDC_COMBO_VBR_BITRATE_LOW;
int optIDC_COMBO_VBR_BITRATE_HIGH;
int optIDC_CHECK_USEPSY;
int optIDC_CHECK_VERIFY;
int optIDC_CHECK_16KHZ_LOW_PASS_FILTER;
} gogo_ConfigDialogInfo_t;
extern volatile gogo_ConfigDialogInfo_t gogo_ConfigDialogInfo;
extern int gogo_ConfigDialogInfoInit(void);
extern int gogo_ConfigDialogInfoApply(void);
extern int gogo_ConfigDialogInfoSaveINI(void);
extern int gogo_ConfigDialogInfoLoadINI(void);
extern int gogoConfigDialog(void);
#endif // AU_GOGO
#ifdef AU_VORBIS
typedef struct vorbis_ConfigDialogInfo_t_ {
int optIDC_CHECK_DEFAULT;
int optIDC_COMBO_MODE;
} vorbis_ConfigDialogInfo_t;
extern int vorbis_ConfigDialogInfoInit(void);
extern int vorbis_ConfigDialogInfoApply(void);
extern int vorbis_ConfigDialogInfoSaveINI(void);
extern int vorbis_ConfigDialogInfoLoadINI(void);
extern int vorbisConfigDialog(void);
#endif // AU_VORBIS
#endif /* __W32G2_PREF_H__ */
|