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.
27 lines
694 B
27 lines
694 B
//------------------------------------------------------------------------
|
|
// FSNotify.h
|
|
//
|
|
// Include file for FSNotify.cpp
|
|
//------------------------------------------------------------------------
|
|
|
|
#if !defined(__FSNOTIFY_H__)
|
|
#define __FSNOTIFY_H__
|
|
|
|
#if defined(__FCN__)
|
|
|
|
// Forward Declarations --------------------------------------------------
|
|
//
|
|
class CFontManager;
|
|
|
|
//------------------------------------------------------------------------
|
|
|
|
typedef struct {
|
|
HANDLE m_hWatch; // Returned from FindFirstChangeNotify.
|
|
} NOTIFYWATCH, FAR * LPNOTIFYWATCH;
|
|
|
|
DWORD dwNotifyWatchProc( LPVOID pvParams );
|
|
|
|
#endif // __FCN__
|
|
|
|
#endif // __FSNOTIFY_H__
|
|
|