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 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97
|
/*
* %CopyrightBegin%
*
* Copyright Ericsson AB 2008-2014. All Rights Reserved.
*
* The contents of this file are subject to the Erlang Public License,
* Version 1.1, (the "License"); you may not use this file except in
* compliance with the License. You should have received a copy of the
* Erlang Public License along with this software. If not, it can be
* retrieved online at http://www.erlang.org/.
*
* Software distributed under the License is distributed on an "AS IS"
* basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See
* the License for the specific language governing rights and limitations
* under the License.
*
* %CopyrightEnd%
*/
#ifndef _WXE_DRIVER_H
#define _WXE_DRIVER_H
#include "erl_driver.h"
typedef unsigned char Uint8;
typedef unsigned int Uint32;
#define MAX_FUNCTIONS_H 2000
#define error() {fprintf(stderr, "Error in %s:%d \n\r", \
__FILE__, __LINE__); \
return;}
typedef struct wxe_bin_ref * WXEBinRefptr;
typedef struct wxe_bin_ref {
char* base;
size_t size;
ErlDrvBinary* bin;
ErlDrvTermData from;
WXEBinRefptr next;
} WXEBinRef;
typedef struct wxe_data_def {
void * driver_data;
WXEBinRef * bin; /* Argument binaries */
ErlDrvPort port_handle;
ErlDrvTermData port;
int is_cbport;
ErlDrvPDL pdl;
} wxe_data;
void init_glexts(wxe_data*);
int load_native_gui();
int start_native_gui(wxe_data *sd);
void stop_native_gui(wxe_data *sd);
void unload_native_gui();
#define FUNC_CALL 13
#define CREATE_PORT 14
#define DELETE_PORT 15
#define PING_PORT 16
void push_command(int op,char * buf,int len, wxe_data *);
void meta_command(int what, wxe_data *sd);
void * wxe_ps_init();
void * wxe_ps_init2();
extern ErlDrvPort WXE_DRV_PORT_HANDLE;
extern ErlDrvTermData WXE_DRV_PORT;
extern int wxe_debug;
extern char * erl_wx_privdir;
#define WXE_BATCH_BEGIN 0
#define WXE_BATCH_END 1
#define WXE_CREATE_PORT 2
#define WXE_REMOVE_PORT 3
#define DESTROY_OBJECT 4
#define WXE_CB_RETURN 5
#define WXE_SHUTDOWN 6
#define WXE_REGISTER_OBJECT 7
#define WXE_CB_START 8
#define WXE_DEBUG_DRIVER 9
#define WXE_DEBUG_PING 10
#define WXE_BIN_INCR 11
#define WXE_BIN_DECR 12
#define WXE_INIT_OPENGL 13
#define WXE_CB_DIED 14
#define OPENGL_START 5000
#endif
|