You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
283 B
24 lines
283 B
//
|
|
// systhrd.h
|
|
//
|
|
|
|
#ifndef SYSTHRD_H
|
|
#define SYSTHRD_H
|
|
|
|
#include "globals.h"
|
|
|
|
class CSysThreadRef
|
|
{
|
|
public:
|
|
CSysThreadRef(SYSTHREAD *psfn)
|
|
{
|
|
Assert(psfn);
|
|
_psfn = psfn;
|
|
}
|
|
|
|
|
|
protected:
|
|
SYSTHREAD *_psfn;
|
|
};
|
|
|
|
#endif // SYSTHRD_H
|