Ignore:
Timestamp:
02/08/13 18:41:26 (11 years ago)
Author:
István Váradi <ivaradi@…>
Branch:
default
Phase:
public
Message:

Implemented the basics of the multi-buffer support for C

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/client/c/hu/varadiistvan/xplra/xplra.h

    r27 r28  
    320320/*----------------------------------------------------------------------------*/
    321321
    322 
     322/**
     323 * Create a multi-dataref getter for the given connection.
     324 *
     325 * @return the ID of the new getter, or -1 on error
     326 */
     327int xplra_create_multi_getter(int connectionID);
     328
     329/*----------------------------------------------------------------------------*/
     330
     331/**
     332 * Create a multi-dataref setter for the given connection.
     333 *
     334 * @return the ID of the new setter, or -1 on error
     335 */
     336int xplra_create_multi_setter(int connectionID);
     337
     338/*----------------------------------------------------------------------------*/
     339
     340/**
     341 * Destruy a multi-dataref buffer for the given connection.
     342 *
     343 * @param connectionID the ID of the connection for which the buffer
     344 * has been created.
     345 *
     346 * @return 0 on success, -1 on error.
     347 */
     348int xplra_destroy_multi_buffer(int connectionID, int bufferID);
    323349
    324350/*----------------------------------------------------------------------------*/
Note: See TracChangeset for help on using the changeset viewer.