Source code of Windows XP (NT5)
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.

20 lines
529 B

  1. ///+---------------------------------------------------------------------------
  2. //
  3. // File: Sem.Hxx
  4. //
  5. // Contents: Semaphore classes
  6. //
  7. // Classes: CMutexSem - Mutex semaphore class
  8. // CShareSem - Multiple Reader, Single Writer class
  9. // CEventSem - Event semaphore
  10. //
  11. // History: 21-Jun-91 AlexT Created.
  12. //
  13. //----------------------------------------------------------------------------
  14. #ifndef __SEM_HXX__
  15. #define __SEM_HXX__
  16. #include <sem32.hxx>
  17. #endif /* __SEM_HXX__ */