Subversion Repositories shark

Compare Revisions

Ignore whitespace Rev 219 → Rev 220

/shark/trunk/include/modules/cabs.h
21,11 → 21,11
 
/**
------------
CVS : $Id: cabs.h,v 1.3 2003-04-17 10:18:38 giacomo Exp $
CVS : $Id: cabs.h,v 1.4 2003-09-04 13:36:22 giacomo Exp $
 
File: $File$
Revision: $Revision: 1.3 $
Last update: $Date: 2003-04-17 10:18:38 $
Revision: $Revision: 1.4 $
Last update: $Date: 2003-09-04 13:36:22 $
------------
 
This file contains the Hartik 3.3.1 CAB functions
83,9 → 83,9
/* User level CAB primitives */
CAB cab_create(char *name, int dim_mes, BYTE num_mes);
char *cab_reserve(CAB id);
int cab_putmes(CAB id, char *pbuf);
int cab_putmes(CAB id, void *pbuf);
char *cab_getmes(CAB id);
int cab_unget(CAB id, char *pun_mes);
int cab_unget(CAB id, void *pun_mes);
void cab_delete(CAB id);
 
__END_DECLS