blob: 5c5b8614ed69d2431a5def73504539518b9edd9b (
plain) (
tree)
|
|
/*
* %CopyrightBegin%
*
* Copyright Ericsson AB 2008-2010. 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;
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();
extern ErlDrvPort 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 OPENGL_START 5000
#endif
|