--- SIDPlayer/src/main.h 2000/09/19 15:34:11 1.2 +++ SIDPlayer/src/main.h 2001/04/01 12:13:49 1.5 @@ -1,7 +1,7 @@ /* * main.h - SIDPlayer common routines * - * SIDPlayer (C) Copyright 1996-2000 Christian Bauer + * SIDPlayer (C) Copyright 1996-2001 Christian Bauer * * 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 @@ -43,7 +43,7 @@ extern int number_of_songs, current_song */ // Init everything -extern void InitAll(void); +extern void InitAll(int &argc, char **&argv); // Exit everything extern void ExitAll(void); @@ -60,6 +60,9 @@ extern bool IsPSIDFile(const char *file) // Load PSID file for playing extern bool LoadPSIDFile(const char *file); +// PSID file loaded and ready? +extern bool IsPSIDLoaded(void); + // Select song for playing extern void SelectSong(int num);