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.

26 lines
694 B

  1. //------------------------------------------------------------------------
  2. // FSNotify.h
  3. //
  4. // Include file for FSNotify.cpp
  5. //------------------------------------------------------------------------
  6. #if !defined(__FSNOTIFY_H__)
  7. #define __FSNOTIFY_H__
  8. #if defined(__FCN__)
  9. // Forward Declarations --------------------------------------------------
  10. //
  11. class CFontManager;
  12. //------------------------------------------------------------------------
  13. typedef struct {
  14. HANDLE m_hWatch; // Returned from FindFirstChangeNotify.
  15. } NOTIFYWATCH, FAR * LPNOTIFYWATCH;
  16. DWORD dwNotifyWatchProc( LPVOID pvParams );
  17. #endif // __FCN__
  18. #endif // __FSNOTIFY_H__
  19.