Ignore:
Timestamp:
May 2, 2000, 10:53:15 PM (25 years ago)
Author:
sandervl
Message:

added exception stack dump code; GetLocaleInfoA fixes

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/kernel32/stubs.cpp

    r3281 r3483  
    1 /* $Id: stubs.cpp,v 1.21 2000-03-30 15:37:14 cbratschi Exp $ */
     1/* $Id: stubs.cpp,v 1.22 2000-05-02 20:53:13 sandervl Exp $ */
    22
    33/*
     
    13671367
    13681368/*****************************************************************************
    1369  * Name      : HANDLE WIN32API FindFirstChangeNotificationW
    1370  * Purpose   : The FindFirstChangeNotification function creates a change
    1371  *             notification handle and sets up initial change notification
    1372  *             filter conditions. A wait on a notification handle succeeds when
    1373  *             a change matching the filter conditions occurs in the specified
    1374  *             directory or subtree.
    1375  * Parameters: LPCWSTR lpPathName           pointer to name of directory to watch
    1376  *             BOOL bWatchSubtree           flag for monitoring directory or
    1377  *                                          directory tree
    1378  *             DWORD dwNotifyFilter         filter conditions to watch for
    1379  * Variables :
    1380  * Result    : If the function succeeds, the return value is a handle to a find
    1381  *             change notification object.
    1382  *             If the function fails, the return value is INVALID_HANDLE_VALUE
    1383  * Remark    :
    1384  * Status    : UNTESTED STUB
    1385  *
    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, dwNotifyFilter
    1396           ));
    1397 
    1398   return (INVALID_HANDLE_VALUE);
    1399 }
    1400 
    1401 /*****************************************************************************
    14021369 * Name      : HANDLE WIN32API FindFirstFileExA
    14031370 * Purpose   : The FindFirstFileExA function searches a directory for a file
Note: See TracChangeset for help on using the changeset viewer.