summaryrefslogtreecommitdiff
path: root/riscos/plugin.c
diff options
context:
space:
mode:
authorJames Bursa <james@netsurf-browser.org>2005-10-30 21:23:44 +0000
committerJames Bursa <james@netsurf-browser.org>2005-10-30 21:23:44 +0000
commit0605ba7c12f7b33bf6add55a4081ed0ecd74e61b (patch)
tree510a0eb89d9ec8f719f2550b69d888ee841b9cf0 /riscos/plugin.c
parenta54ae0e82d492e687eb7445322fc9d0d7edce862 (diff)
downloadnetsurf-0605ba7c12f7b33bf6add55a4081ed0ecd74e61b.tar.gz
netsurf-0605ba7c12f7b33bf6add55a4081ed0ecd74e61b.tar.bz2
[project @ 2005-10-30 21:23:44 by bursa]
Add index parameter to plugin_open(). svn path=/import/netsurf/; revision=1876
Diffstat (limited to 'riscos/plugin.c')
-rw-r--r--riscos/plugin.c17
1 files changed, 9 insertions, 8 deletions
diff --git a/riscos/plugin.c b/riscos/plugin.c
index ee05c5bf1..8a8b0c921 100644
--- a/riscos/plugin.c
+++ b/riscos/plugin.c
@@ -250,17 +250,18 @@ bool plugin_redraw(struct content *c, int x, int y,
/**
- * Handle a window containing a CONTENT_PLUGIN being opened
+ * Handle a window containing a CONTENT_PLUGIN being opened.
*
- * \param c The content to open
- * \param bw The window to add the content to
- * \param page The containing content
- * \param box The containing box
- * \param params Any parameters associated with the content
- * \param state State data pointer
+ * \param c content that has been opened
+ * \param bw browser window containing the content
+ * \param page content of type CONTENT_HTML containing c, or 0 if not an
+ * object within a page
+ * \param index index in page->data.html.object, or 0 if not an object
+ * \param box box containing c, or 0 if not an object
+ * \param params object parameters, or 0 if not an object
*/
void plugin_open(struct content *c, struct browser_window *bw,
- struct content *page, struct box *box,
+ struct content *page, unsigned int index, struct box *box,
struct object_params *params)
{
bool standalone = false, helper = false;