Remove fdLink, fdFree, fdNew defines.

This commit is contained in:
Ralf Corsépius 2007-09-21 17:02:33 +02:00
parent 273ddaf0a9
commit 0e3ce6c9a8
1 changed files with 3 additions and 6 deletions

View File

@ -371,18 +371,15 @@ extern int fdClose( void * cookie);
/**
*/
FD_t fdLink (void * cookie, const char * msg);
#define fdLink(_fd, _msg) fdio->_fdref(_fd, _msg, __FILE__, __LINE__)
extern FD_t fdLink (void * cookie, const char * msg);
/**
*/
FD_t fdFree(FD_t fd, const char * msg);
#define fdFree(_fd, _msg) fdio->_fdderef(_fd, _msg, __FILE__, __LINE__)
extern FD_t fdFree(FD_t fd, const char * msg);
/**
*/
FD_t fdNew (const char * msg);
#define fdNew(_msg) fdio->_fdnew(_msg, __FILE__, __LINE__)
extern FD_t fdNew (const char * msg);
/**
*/