diff options
author | Erlang/OTP <[email protected]> | 2009-11-20 14:54:40 +0000 |
---|---|---|
committer | Erlang/OTP <[email protected]> | 2009-11-20 14:54:40 +0000 |
commit | 84adefa331c4159d432d22840663c38f155cd4c1 (patch) | |
tree | bff9a9c66adda4df2106dfd0e5c053ab182a12bd /lib/wx/c_src/wxe_driver.h | |
download | otp-84adefa331c4159d432d22840663c38f155cd4c1.tar.gz otp-84adefa331c4159d432d22840663c38f155cd4c1.tar.bz2 otp-84adefa331c4159d432d22840663c38f155cd4c1.zip |
The R13B03 release.OTP_R13B03
Diffstat (limited to 'lib/wx/c_src/wxe_driver.h')
-rw-r--r-- | lib/wx/c_src/wxe_driver.h | 91 |
1 files changed, 91 insertions, 0 deletions
diff --git a/lib/wx/c_src/wxe_driver.h b/lib/wx/c_src/wxe_driver.h new file mode 100644 index 0000000000..8437b4eb36 --- /dev/null +++ b/lib/wx/c_src/wxe_driver.h @@ -0,0 +1,91 @@ +/* + * %CopyrightBegin% + * + * Copyright Ericsson AB 2008-2009. 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; +} 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 5001 +#define WXE_BIN_DECR 5002 + +#define OPENGL_START 5000 + +#endif + |