#ifndef CRIT_SECTION_H
#define CRIT_SECTION_H

void EnterCriticalSection( void );
void ExitCriticalSection( void );

#endif
