~ubuntu-branches/ubuntu/utopic/libnb-platform18-java/utopic-proposed

« back to all changes in this revision

Viewing changes to o.n.bootstrap/launcher/windows/jvmlauncher.h

  • Committer: Package Import Robot
  • Author(s): tony mancill, Andrew Ross, tony mancill
  • Date: 2013-12-25 10:42:18 UTC
  • Revision ID: package-import@ubuntu.com-20131225104218-jeviqyvn71vat6x5
Tags: 7.4+dfsg1-1
* Team upload.

[ Andrew Ross ]
* New upstream release of Netbeans.
* Switch to mingw-w64 (Closes: #680468)
* Separate Netbeans Platform back into its own package.
* Include cluster release number in source package name to allow
  multiple Netbeans platforms to be installed at once.
* Build .nbm modules and install into their own package.
* Upstream removed bashism from o.n.bootstrap/launcher/unix/nbexec
  (Closes: #690633)
* Updated debian/patches.

[ tony mancill ]
* Bump standards version to 3.9.5.

Show diffs side-by-side

added added

removed removed

Lines of Context:
50
50
#include <windows.h>
51
51
#include <string>
52
52
#include <list>
 
53
 
 
54
// Use the definitions below rather than the linux jdk ones
 
55
#define _JAVASOFT_JNI_MD_H_
 
56
// imports, exports, and calling conventions need to match those used in a dll
 
57
#define JNIEXPORT __declspec(dllexport)
 
58
#define JNIIMPORT __declspec(dllimport)
 
59
#define JNICALL __stdcall
 
60
// Correct types for the windows platform
 
61
typedef long jint;
 
62
typedef __int64 jlong;
 
63
typedef signed char jbyte;
 
64
 
53
65
#include "jni.h"
54
66
#include "utilsfuncs.h"
55
67