Changeset 3483 for trunk/src/kernel32/stubs.cpp
- Timestamp:
- May 2, 2000, 10:53:15 PM (25 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/kernel32/stubs.cpp
r3281 r3483 1 /* $Id: stubs.cpp,v 1.2 1 2000-03-30 15:37:14 cbratschiExp $ */1 /* $Id: stubs.cpp,v 1.22 2000-05-02 20:53:13 sandervl Exp $ */ 2 2 3 3 /* … … 1367 1367 1368 1368 /***************************************************************************** 1369 * Name : HANDLE WIN32API FindFirstChangeNotificationW1370 * Purpose : The FindFirstChangeNotification function creates a change1371 * notification handle and sets up initial change notification1372 * filter conditions. A wait on a notification handle succeeds when1373 * a change matching the filter conditions occurs in the specified1374 * directory or subtree.1375 * Parameters: LPCWSTR lpPathName pointer to name of directory to watch1376 * BOOL bWatchSubtree flag for monitoring directory or1377 * directory tree1378 * DWORD dwNotifyFilter filter conditions to watch for1379 * Variables :1380 * Result : If the function succeeds, the return value is a handle to a find1381 * change notification object.1382 * If the function fails, the return value is INVALID_HANDLE_VALUE1383 * Remark :1384 * Status : UNTESTED STUB1385 *1386 * Author : Markus Montkowski [Tha, 1998/05/21 20:57]1387 *****************************************************************************/1388 1389 HANDLE WIN32API FindFirstChangeNotificationW( LPCWSTR lpPathName,1390 BOOL bWatchSubtree,1391 DWORD dwNotifyFilter)1392 {1393 1394 dprintf(("KERNEL32: FindFirstChangeNotificationW(%08x,%08x,%08x) not implemented - INVALID_HANDLE_VALUE\n",1395 lpPathName, bWatchSubtree, dwNotifyFilter1396 ));1397 1398 return (INVALID_HANDLE_VALUE);1399 }1400 1401 /*****************************************************************************1402 1369 * Name : HANDLE WIN32API FindFirstFileExA 1403 1370 * Purpose : The FindFirstFileExA function searches a directory for a file
Note:
See TracChangeset
for help on using the changeset viewer.