Leaked source code of windows server 2003
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

  1. //
  2. // systhrd.h
  3. //
  4. #ifndef SYSTHRD_H
  5. #define SYSTHRD_H
  6. #include "globals.h"
  7. class CSysThreadRef
  8. {
  9. public:
  10. CSysThreadRef(SYSTHREAD *psfn)
  11. {
  12. Assert(psfn);
  13. _psfn = psfn;
  14. }
  15. protected:
  16. SYSTHREAD *_psfn;
  17. };
  18. #endif // SYSTHRD_H