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
|
/*******************************************************************************
* Copyright (c) 2000, 2010 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
/**
* Callback implementation.
*/
#ifndef INC_callback_H
#define INC_callback_H
#include "swt.h"
#if defined (_WIN32) || defined (_WIN32_WCE)
#include "windows.h"
#define RETURN_TYPE LRESULT CALLBACK
#define RETURN_CAST (LRESULT)
#endif
#if defined COCOA
#import <Foundation/Foundation.h>
#endif
#ifndef RETURN_TYPE
#define RETURN_TYPE jintLong
#endif
#ifndef RETURN_CAST
#define RETURN_CAST
#endif
/*
* Note that only x86 assembler is supported
*/
#if !(defined(__i386__) || defined(_M_IX86) || defined(_X86_))
#undef USE_ASSEMBLER
#endif
#ifdef REDUCED_CALLBACKS
#define MAX_CALLBACKS 16
#else
#if (defined(USE_ASSEMBLER) || defined(GTK))
#define MAX_CALLBACKS 256
#else
#define MAX_CALLBACKS 128
#endif
#endif /* REDUCED_CALLBACKS */
#define MAX_ARGS 12
typedef struct CALLBACK_DATA {
jobject callback;
jmethodID methodID;
jobject object;
jboolean isStatic;
jboolean isArrayBased;
jint argCount;
jintLong errorResult;
} CALLBACK_DATA;
#endif /* ifndef INC_callback_H */
|