More Win32Constants?

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
3 messages Options
Reply | Threaded
Open this post in threaded view
|

More Win32Constants?

Sebastián
Hi all,

    I need to map a fuction that hasn´t the KernelLibrary class. It is the
following

From:
http://msdn.microsoft.com/library/default.asp?url=/library/en-us/fileio/file
sio_9hgu.asp
- The FindFirstChangeNotification function creates a change notification
handle and sets up initial change notification filter conditions. A wait on
a notification handle succeeds when a change matching the filter conditions
occurs in the specified directory or subtree.

HANDLE FindFirstChangeNotification(
  LPCTSTR lpPathName,    // directory name
  BOOL bWatchSubtree,    // monitoring option
  DWORD dwNotifyFilter   // filter conditions
); -

    I need to pass to it invocation the constant
FILE_NOTIFY_CHANGE_LAST_WRITE and others to experiment but I didn´t find it
on Win32Constants dictionary, but also can´t find it on de MS site!

...need a little help


regards

Seb


Reply | Threaded
Open this post in threaded view
|

Re: More Win32Constants?

Bill Schwab
Seb,

>From winnt.h:
#define FILE_NOTIFY_CHANGE_LAST_WRITE   0x00000010

Have a good one,

Bill

--
Wilhelm K. Schwab, Ph.D.
[hidden email]


Reply | Threaded
Open this post in threaded view
|

Re: More Win32Constants?

Sebastián
Thanks Bill,

    I've found the winnt.h in the SDK.

    I love this newsgroup

Seb


"Bill Schwab" <[hidden email]> escribió en el mensaje
news:a8ofao$6cc$[hidden email]...

> Seb,
>
> From winnt.h:
> #define FILE_NOTIFY_CHANGE_LAST_WRITE   0x00000010
>
> Have a good one,
>
> Bill
>
> --
> Wilhelm K. Schwab, Ph.D.
> [hidden email]
>
>
>