Windows NT 4.0 source code leak
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.

22 lines
566 B

4 years ago
  1. //--------------------------------------------------------------------------;
  2. //
  3. // File: FLocks.h
  4. //
  5. // Copyright (c) 1995,1996 Microsoft Corporation. All Rights Reserved.
  6. //
  7. // History:
  8. // Date Person Reason
  9. // 12/10/95 angus Initial Version
  10. //
  11. //--------------------------------------------------------------------------;
  12. #ifndef FLOCKS_H
  13. #define FLOCKS_H
  14. extern int CreateFocusLock (HANDLE*);
  15. extern int DestroyFocusLock (HANDLE);
  16. extern int GetFocusLock (HANDLE*);
  17. extern int ReleaseFocusLock (HANDLE);
  18. #endif FLOCKS_H