You've already forked lazarus-ccr
83 lines
4.3 KiB
PHP
83 lines
4.3 KiB
PHP
![]() |
|
||
|
(*
|
||
|
* LibVortex: C Header file to Free Pascal translation.
|
||
|
* Copyright (C) 2009, Wimpie Nortje <wimpienortje@gmail.com>
|
||
|
*)
|
||
|
|
||
|
(*
|
||
|
* LibVortex: A BEEP (RFC3080/RFC3081) implementation.
|
||
|
* Copyright (C) 2008 Advanced Software Production Line, S.L.
|
||
|
*
|
||
|
* This program is free software; you can redistribute it and/or
|
||
|
* modify it under the terms of the GNU Lesser General Public License
|
||
|
* as published by the Free Software Foundation; either version 2.1
|
||
|
* of the License, or (at your option) any later version.
|
||
|
*
|
||
|
* This program is distributed in the hope that it will be useful,
|
||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||
|
* Lesser General Public License for more details.
|
||
|
*
|
||
|
* You should have received a copy of the GNU Lesser General Public
|
||
|
* License along with this program; if not, write to the Free
|
||
|
* Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
|
||
|
* 02111-1307 USA
|
||
|
*
|
||
|
* You may find a copy of the license under this software is released
|
||
|
* at COPYING file. This is LGPL software: you are welcome to develop
|
||
|
* proprietary applications using this library without any royalty or
|
||
|
* fee but returning back any change, improvement or addition in the
|
||
|
* form of source code, project image, documentation patches, etc.
|
||
|
*
|
||
|
* For commercial support on build BEEP enabled solutions contact us:
|
||
|
*
|
||
|
* Postal address:
|
||
|
* Advanced Software Production Line, S.L.
|
||
|
* C/ Antonio Suarez Nº 10,
|
||
|
* Edificio Alius A, Despacho 102
|
||
|
* Alcalá de Henares 28802 (Madrid)
|
||
|
* Spain
|
||
|
*
|
||
|
* Email address:
|
||
|
* info@aspl.es - http://www.aspl.es/vortex
|
||
|
*)
|
||
|
|
||
|
//void vortex_reader_watch_listener (VortexCtx * ctx,
|
||
|
// VortexConnection * listener);
|
||
|
procedure vortex_reader_watch_listener (ctx : PVortexCtx;
|
||
|
listener : PVortexConnection);
|
||
|
cdecl;external External_library name 'vortex_reader_watch_listener';
|
||
|
|
||
|
//void vortex_reader_watch_connection (VortexCtx * ctx,
|
||
|
// VortexConnection * connection);
|
||
|
procedure vortex_reader_watch_connection (ctx : PVortexCtx;
|
||
|
connection : PVortexConnection);
|
||
|
cdecl;external External_library name 'vortex_reader_watch_connection';
|
||
|
|
||
|
//int vortex_reader_run (VortexCtx * ctx);
|
||
|
function vortex_reader_run (ctx : PVortexCtx):longint;
|
||
|
cdecl;external External_library name 'vortex_reader_run';
|
||
|
|
||
|
//void vortex_reader_stop (VortexCtx * ctx);
|
||
|
procedure vortex_reader_stop (ctx : PVortexCtx);
|
||
|
cdecl;external External_library name 'vortex_reader_stop';
|
||
|
|
||
|
//int vortex_reader_notify_change_io_api (VortexCtx * ctx);
|
||
|
function vortex_reader_notify_change_io_api (ctx : PVortexCtx):longint;
|
||
|
cdecl;external External_library name 'vortex_reader_notify_change_io_api';
|
||
|
|
||
|
//void vortex_reader_notify_change_done_io_api(VortexCtx * ctx);
|
||
|
procedure vortex_reader_notify_change_done_io_api(ctx : PVortexCtx);
|
||
|
cdecl;external External_library name 'vortex_reader_notify_change_done_io_api';
|
||
|
|
||
|
//axl_bool vortex_reader_invoke_frame_received (VortexCtx * ctx,
|
||
|
// VortexConnection * connection,
|
||
|
// VortexChannel * channel,
|
||
|
// VortexFrame * frame);
|
||
|
function vortex_reader_invoke_frame_received (ctx : PVortexCtx;
|
||
|
connection : PVortexConnection;
|
||
|
channel : PVortexChannel;
|
||
|
frame : PVortexFrame):Taxl_bool;
|
||
|
cdecl;external External_library name 'vortex_reader_invoke_frame_received';
|
||
|
|