Initial Commit:
- Create single library for all Core RedA functions/classes - Working version
This commit is contained in:
28
SelectCore.h
Normal file
28
SelectCore.h
Normal file
@@ -0,0 +1,28 @@
|
||||
/*
|
||||
* Select.h
|
||||
*
|
||||
* Created on: 13 May 2016
|
||||
* Author: wentzelc
|
||||
*/
|
||||
|
||||
#ifndef SELECTCORE_H_
|
||||
#define SELECTCORE_H_
|
||||
|
||||
// redA Libraries
|
||||
/* none */
|
||||
|
||||
// Standard C/C++ Libraries
|
||||
/* none */
|
||||
|
||||
//---------------------------------------------------------------------------
|
||||
|
||||
void SelectConfig( long Timeout );
|
||||
void SelectClear();
|
||||
void SelectAdd( int FD, bool Read, bool Write );
|
||||
void SelectRemove( int FD, bool Read, bool Write );
|
||||
bool SelectTest();
|
||||
bool SelectCheck( int FD, bool &Read, bool &Write );
|
||||
|
||||
//---------------------------------------------------------------------------
|
||||
|
||||
#endif /* SELECTCORE_H_ */
|
||||
Reference in New Issue
Block a user