source: branches/classes/c/c_audio/cwflac.c

Last change on this file was 2, checked in by stevenhl, 8 years ago

Import sources from cwmm-full.zip dated 2005-03-21

File size: 3.6 KB
Line 
1/*
2 * (C) Chris Wohlgemuth 2002-2004
3 *
4 */
5/*
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2, or (at your option)
9 * any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program; see the file COPYING. If not, write to
18 * the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
19 */
20/*
21 * If you need another license for your project/product (commercial,
22 * noncommercial, whatever) contact me at
23 *
24 * http://www.os2world.com/cdwriting
25 * http://www.geocities.com/SiliconValley/Sector/5785/
26 *
27 */
28/*
29 * This file was generated by the SOM Compiler and Emitter Framework.
30 * Generated using:
31 * SOM Emitter emitctm: 2.42
32 */
33
34#ifndef SOM_Module_cwflac_Source
35#define SOM_Module_cwflac_Source
36#endif
37#define MMFLAC_Class_Source
38#define M_MMFLAC_Class_Source
39
40#include <os2.h>
41#include "cwflac.ih"
42#include "cwaudioinc.h"
43
44HMODULE queryResModuleHandle(void);
45HMODULE queryModuleHandle(void);
46BOOL getMessage(char* text,ULONG ulID, LONG lSizeText, HMODULE hResource,HWND hwnd);
47
48SOM_Scope PSZ SOMLINK cwflacM_wpclsQueryInstanceType(M_MMFLAC *somSelf)
49{
50 /* M_MMFLACData *somThis = M_MMFLACGetData(somSelf); */
51 M_MMFLACMethodDebug("M_MMFLAC","cwflacM_wpclsQueryInstanceType");
52
53 return TYPE_FLAC;
54}
55
56SOM_Scope PSZ SOMLINK cwflacM_wpclsQueryInstanceFilter(M_MMFLAC *somSelf)
57{
58 /* M_MMFLACData *somThis = M_MMFLACGetData(somSelf); */
59 M_MMFLACMethodDebug("M_MMFLAC","cwflacM_wpclsQueryInstanceFilter");
60
61 return "*.FLA,*.FLAC";
62}
63
64SOM_Scope BOOL SOMLINK cwflacM_wpclsQueryDefaultHelp(M_MMFLAC *somSelf,
65 PULONG pHelpPanelId,
66 PSZ pszHelpLibrary)
67{
68 /* M_MMFLACData *somThis = M_MMFLACGetData(somSelf); */
69 M_MMFLACMethodDebug("M_MMFLAC","cwflacM_wpclsQueryDefaultHelp");
70
71 return (M_MMFLAC_parent_M_MMAudio_wpclsQueryDefaultHelp(somSelf,
72 pHelpPanelId,
73 pszHelpLibrary));
74}
75
76SOM_Scope PSZ SOMLINK cwflacM_wpclsQueryTitle(M_MMFLAC *somSelf)
77{
78 static char chrTitle[20]={0};
79 /* M_MMFLACData *somThis = M_MMFLACGetData(somSelf); */
80 M_MMFLACMethodDebug("M_MMFLAC","cwflacM_wpclsQueryTitle");
81
82 if(chrTitle[0]==0)
83 if(!getMessage(chrTitle, IDSTR_FLACTITLE, sizeof(chrTitle), queryResModuleHandle(), HWND_DESKTOP))
84 strcpy(chrTitle, CLSTITLE_FLAC);
85
86 return chrTitle;
87}
88
89SOM_Scope ULONG SOMLINK cwflacM_wpclsQueryIconData(M_MMFLAC *somSelf,
90 PICONINFO pIconInfo)
91{
92 HMODULE hmod;
93 /* M_MMFLACData *somThis = M_MMFLACGetData(somSelf); */
94 M_MMFLACMethodDebug("M_MMFLAC","cwflacM_wpclsQueryIconData");
95
96 hmod=queryModuleHandle();
97 if(!hmod)
98 return M_MMFLAC_parent_M_MMAudio_wpclsQueryIconData(somSelf, pIconInfo);
99
100 if (pIconInfo) {
101 pIconInfo->fFormat = ICON_RESOURCE;
102 pIconInfo->hmod = hmod;
103 pIconInfo->resid = ID_ICONFLACFILE;
104 } /* endif */
105
106 return ( sizeof(ICONINFO) );
107}
108
Note: See TracBrowser for help on using the repository browser.