~ubuntu-branches/ubuntu/oneiric/gecko-mediaplayer/oneiric

« back to all changes in this revision

Viewing changes to src/np_entry.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Cesare Tirabassi
  • Date: 2010-02-17 10:17:01 UTC
  • mfrom: (1.1.15 upstream)
  • Revision ID: james.westby@ubuntu.com-20100217101701-mqfz0z0owm89ut9y
Tags: 0.9.9.1~svn374-0ubuntu1
* SVN snapshot release (LP: #86777, LP: #445767, Closes: #557761):
  - apple.com fixes
* Replace Build-Depends on iceape-dev with xulrunner-dev (Closes: #555916)
* No change bump of Standards-Version
* Converted to source format 3.0
* Add opera (>= 9.50) as a compatible browser (LP: #230662)
* Remove linker flag -z defs since the plugin doesn't link to all
  required libraries on purpose

Show diffs side-by-side

added added

removed removed

Lines of Context:
39
39
//
40
40
// Main plugin entry point implementation
41
41
//
42
 
#include "npapi.h"
 
42
#include <npapi.h>
 
43
#include <npfunctions.h>
43
44
#include "npupp.h"
44
45
 
45
46
#ifndef HIBYTE
46
 
#define HIBYTE(x) ((((uint32)(x)) & 0xff00) >> 8)
 
47
#define HIBYTE(x) ((((uint32_t)(x)) & 0xff00) >> 8)
47
48
#endif
48
49
 
49
50
NPNetscapeFuncs NPNFuncs;