Welcome to mirror list, hosted at ThFree Co, Russian Federation.

rmavsrc.h « realmedia « include - github.com/mpc-hc/mpc-hc.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b96ab6486cddffc5802a5e49c2d569627ca826a2 (plain)
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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
#ifndef _RMAVSRC_H
#define _RMAVSRC_H
/****************************************************************************
 * 
 *  $Id: rmavsrc.h 7 2003-05-30 02:18:02Z gabest $
 *
 *  Copyright (C) 1999 RealNetworks, Inc. All rights reserved..
 *  
 *  http://www.real.com/devzone
 *
 *  This program contains proprietary 
 *  information of RealNetworks, Inc, and is licensed
 *  subject to restrictions on use and distribution.
 *
 *  RealMedia Architecture FileViewSource Interfaces.
 *
 */


typedef _INTERFACE	IRMAStreamSource		IRMAStreamSource;
typedef _INTERFACE	IRMAFileObject			IRMAFileObject;

// Interfaces definded in this file
typedef _INTERFACE	IRMAFileViewSource		IRMAFileViewSource;
typedef _INTERFACE	IRMAFileViewSourceResponse	IRMAFileViewSourceResponse;
typedef _INTERFACE	IRMAViewSourceCommand		IRMAViewSourceCommand;
typedef _INTERFACE	IRMAViewSourceURLResponse	IRMAViewSourceURLResponse;




/****************************************************************************
 * 
 *  Interface:
 * 
 *	IRMAFileViewSource
 * 
 *  IID_IRMAFileViewSource:
 * 
 *	{00003500-0901-11d1-8B06-00A024406D59}
 * 
 */

enum SOURCE_TYPE
{
    RAW_SOURCE,
    HTML_SOURCE
};

DEFINE_GUID(IID_IRMAFileViewSource, 0x00003500, 0x901, 0x11d1, 0x8b, 0x6,
	    0x0, 0xa0, 0x24, 0x40, 0x6d, 0x59);

#undef  INTERFACE
#define INTERFACE   IRMAFileViewSource

DECLARE_INTERFACE_(IRMAFileViewSource, IUnknown)
{
    /*
     *	IUnknown methods
     */
    STDMETHOD(QueryInterface)	(THIS_ REFIID riid, void** ppvObj) PURE;
    STDMETHOD_(ULONG,AddRef)	(THIS) PURE;
    STDMETHOD_(ULONG,Release) (THIS) PURE;

    /************************************************************************
     *  IRMAFileViewSource
     */
    STDMETHOD(InitViewSource)		(THIS_
	IRMAFileObject*		    /*IN*/ pFileObject,
	IRMAFileViewSourceResponse* /*IN*/ pResp,
	SOURCE_TYPE		    /*IN*/ sourceType,
	IRMAValues*		    /*IN*/ pOptions) PURE;
    STDMETHOD(GetSource)    (THIS) PURE;
    STDMETHOD(Close)	    (THIS) PURE;
};

/****************************************************************************
 * 
 *  Interface:
 * 
 *	IRMAFileViewSourceResponse
 * 
 *  IID_IRMAFileViewSourceResponse:
 * 
 *	{00003501-0901-11d1-8B06-00A024406D59}
 * 
 */

DEFINE_GUID(IID_IRMAFileViewSourceResponse, 0x00003501, 0x901, 0x11d1, 0x8b,
	    0x6, 0x0, 0xa0, 0x24, 0x40, 0x6d, 0x59);

#undef  INTERFACE
#define INTERFACE   IRMAFileViewSourceResponse

DECLARE_INTERFACE_(IRMAFileViewSourceResponse, IUnknown)
{
    /*
     *	IUnknown methods
     */
    STDMETHOD(QueryInterface)	(THIS_ REFIID riid, void** ppvObj) PURE;
    STDMETHOD_(ULONG,AddRef)	(THIS) PURE;
    STDMETHOD_(ULONG,Release)	(THIS) PURE;

    /************************************************************************
     *  IRMAFileViewSourceResoponse
     */
    STDMETHOD(InitDone)		(THIS_ PN_RESULT status	) PURE;
    STDMETHOD(SourceReady)	(THIS_ PN_RESULT status,
	IRMABuffer* pSource ) PURE;
    STDMETHOD(CloseDone) (THIS_ PN_RESULT) PURE;
};

/****************************************************************************
 * 
 *  Interface:
 * 
 *	IRMAViewSourceCommand
 * 
 *  IID_IRMAViewSourceCommand:
 * 
 *	{00003504-0901-11d1-8B06-00A024406D59}
 * 
 */
DEFINE_GUID(IID_IRMAViewSourceCommand, 0x00003504, 0x901, 0x11d1, 0x8b, 0x6,
	    0x0, 0xa0, 0x24, 0x40, 0x6d, 0x59);

#undef  INTERFACE
#define INTERFACE   IRMAViewSourceCommand

DECLARE_INTERFACE_(IRMAViewSourceCommand, IUnknown)
{
    /*
     *	IUnknown methods
     */
    STDMETHOD(QueryInterface)	(THIS_ REFIID riid, void** ppvObj) PURE;
    STDMETHOD_(ULONG,AddRef)	(THIS) PURE;
    STDMETHOD_(ULONG,Release) (THIS) PURE;

    /************************************************************************
     *  IRMAViewSourceCommand
     */
    STDMETHOD_(BOOL, CanViewSource)	(THIS_
					IRMAStreamSource*		pStream) PURE;
    STDMETHOD(DoViewSource)		(THIS_
					IRMAStreamSource*		pStream) PURE;
    STDMETHOD(GetViewSourceURL) (THIS_
					IRMAStreamSource*		pSource,
					IRMAViewSourceURLResponse*      pResp) PURE;
};

/****************************************************************************
 * 
 *  Interface:
 * 
 *	IRMAViewSourceURLResponse
 * 
 *  IID_IRMAViewSourceURLResponse:
 * 
 *	{00003505-0901-11d1-8B06-00A024406D59}
 * 
 */
DEFINE_GUID(IID_IRMAViewSourceURLResponse, 0x00003505, 0x901, 0x11d1, 0x8b, 0x6,
	    0x0, 0xa0, 0x24, 0x40, 0x6d, 0x59);

#undef  INTERFACE
#define INTERFACE   IRMAViewSourceURLResponse

DECLARE_INTERFACE_(IRMAViewSourceURLResponse, IUnknown)
{
    /*
     *	IUnknown methods
     */
    STDMETHOD(QueryInterface)	(THIS_ REFIID riid, void** ppvObj) PURE;
    STDMETHOD_(ULONG,AddRef)	(THIS) PURE;
    STDMETHOD_(ULONG,Release) (THIS) PURE;

    /************************************************************************
     *  IRMAViewSourceURLResponse
     */
    STDMETHOD(ViewSourceURLReady)	(THIS_	
					const char* /*out*/ pUrl) PURE;
};


#endif