1 | /*
|
---|
2 | * This program is free software; you can redistribute it and/or modify
|
---|
3 | * it under the terms of the GNU General Public License as published by
|
---|
4 | * the Free Software Foundation; either version 2, or (at your option)
|
---|
5 | * any later version.
|
---|
6 | *
|
---|
7 | * This program is distributed in the hope that it will be useful,
|
---|
8 | * but WITHOUT ANY WARRANTY; without even the implied warranty of
|
---|
9 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
---|
10 | * GNU General Public License for more details.
|
---|
11 | *
|
---|
12 | * You should have received a copy of the GNU General Public License
|
---|
13 | * along with this program; see the file COPYING. If not, write to
|
---|
14 | * the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
|
---|
15 | */
|
---|
16 | /*
|
---|
17 | * If you need another license for your project/product (commercial,
|
---|
18 | * noncommercial, whatever) contact me at
|
---|
19 | *
|
---|
20 | * http://www.os2world.com/cdwriting
|
---|
21 | * http://www.geocities.com/SiliconValley/Sector/5785/
|
---|
22 | *
|
---|
23 | */
|
---|
24 |
|
---|
25 | /************************************/
|
---|
26 | /* */
|
---|
27 | /* Ini file */
|
---|
28 | /* */
|
---|
29 | /************************************/
|
---|
30 | /* General */
|
---|
31 | #define INI_FILE_NAME "\\cwmm.ini"
|
---|
32 | #define INI_WINDOWPOS_KEY "windowpos" /* Key for storing window position */
|
---|
33 |
|
---|
34 | /* Audio player */
|
---|
35 | #define DEFAULT_VOLUME 75 /* Default volume for audio player (not volume object) */
|
---|
36 | #define INI_MMPLAYER_APP "mmplayer" /* App name to use */
|
---|
37 | #define INI_DISPLAY_KEY "displaytype" /* Key for storing which display to show */
|
---|
38 | #define INI_VOLUME_KEY "volume" /* Key for storing the volume */
|
---|
39 |
|
---|
40 | /* Image converter */
|
---|
41 | #define INI_IMGCONV_APP "imageconv"
|
---|
42 |
|
---|
43 | /* Audio converter */
|
---|
44 | #define INI_AUDIOCONV_APP "audioconv"
|
---|
45 |
|
---|
46 | /* Master volume */
|
---|
47 | #define INI_VOLUME_APP "volume"
|
---|
48 |
|
---|
49 | /* Volume for classes */
|
---|
50 | #define INI_CLASSVOLUME_APP "classvolume"
|
---|
51 |
|
---|
52 | /* For setting volume */
|
---|
53 | #define SETUP_MMAUDIOVOLUME "MMAUDIOVOLUME"
|
---|