summaryrefslogtreecommitdiff
path: root/riscos/plugin.h
blob: 98b94c4da897bfffb98e7a0504104f2963ca24af (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
/**
 * $Id: plugin.h,v 1.1 2003/05/31 18:47:00 jmb Exp $
 */

#ifndef _NETSURF_RISCOS_PLUGIN_H_
#define _NETSURF_RISCOS_PLUGIN_H_

struct plugin_object {

        char* data;
        char* src;
        char* type;
        char* codetype;
        char* codebase;
        char* classid;
        char* paramds;       /* very likely to change */
        unsigned int* width;
        unsigned int* height;

};


void plugin_fetch(struct content* content, char* url, struct box* box,
                  struct plugin_object* po);

#endif