home *** CD-ROM | disk | FTP | other *** search
- /*
- * This file is (C) Chris Wohlgemuth 1999
- */
- /*
- * 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, 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; see the file COPYING. If not, write to
- * the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
- */
-
- #include "audiofolder.hh"
- #include "audiofolderhelp.h"
-
- #include <stdlib.h>
- #include <stdio.h>
-
- /* Overriden function which returns our class name */
- PSZ M_CWDataFolder::wpclsQueryTitle()
- {
- return "Data-CD-Creator";
- }
-
- ULONG M_CWDataFolder::wpclsQueryStyle()
- {
- /* CWProgFolder returns *_NEVERTEMPLATE but we want a template */
- return M_WPFolder::wpclsQueryStyle();
- }
-
- BOOL M_CWDataFolder::wpclsQueryDefaultHelp(PULONG HelpPanelId,PSZ HelpLibrary)
- {
- if(HelpLibrary)
- strcpy(HelpLibrary,AFHELPLIBRARY);
- if(HelpPanelId)
- *HelpPanelId= IDHLP_DATACDMAIN;
-
- return TRUE;
- }
-
-
-
-
-