Changeset 7555 for trunk/src/kernel32/stubs.cpp
- Timestamp:
- Dec 6, 2001, 11:14:45 AM (24 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/kernel32/stubs.cpp
r7480 r7555 1 /* $Id: stubs.cpp,v 1.3 5 2001-11-29 10:31:07 phallerExp $1 /* $Id: stubs.cpp,v 1.36 2001-12-06 10:14:45 sandervl Exp $ 2 2 * 3 3 * Win32 KERNEL32 Subsystem for OS/2 … … 87 87 88 88 89 // For FindFirstFileEx90 91 #define FIND_FIRST_EX_CASE_SENSITIVE 0x0000000192 89 93 90 /***************************************************************************** 94 91 * Structures * 95 92 *****************************************************************************/ 96 97 // For FindFirstFileEx98 99 typedef enum _FINDEX_INFO_LEVELS {100 FindExInfoStandard,101 FindExInfoMaxInfoLevel102 } FINDEX_INFO_LEVELS;103 104 typedef enum _FINDEX_SEARCH_OPS {105 FindExSearchNameMatch,106 FindExSearchLimitToDirectories,107 FindExSearchLimitToDevices,108 FindExSearchMaxSearchOp109 } FINDEX_SEARCH_OPS;110 93 111 94 // For Backup funtions … … 820 803 } 821 804 822 823 /*****************************************************************************824 * Name : HANDLE WIN32API FindFirstFileExA825 * Purpose : The FindFirstFileExA function searches a directory for a file826 * whose name and attributes match those specified in the827 * function call.828 * Parameters: LPCSTR lpFileName pointer to the name of the file829 * to search for830 * FINDEX_INFO_LEVELS fInfoLevelId information level of the returned data831 * LPVOID lpFindFileData pointer to the returned information832 * FINDEX_SEARCH_OPS fSearchOp type of filtering to perform833 * LPVOID lpSearchFilter pointer to search criteria834 * DWORD dwAdditionalFlags additional search control flags835 * Variables :836 * Result : If the function succeeds, the return value is a search handle837 * that can be used in a subsequent call to the FindNextFile or838 * FindClose functions.839 * If the function fails, the return value is INVALID_HANDLE_VALUE840 * Remark :841 * Status : UNTESTED STUB842 *843 * Author : Markus Montkowski [Tha, 1998/05/21 20:57]844 *****************************************************************************/845 846 HANDLE WIN32API FindFirstFileExA( LPCSTR lpFileName,847 FINDEX_INFO_LEVELS fInfoLevelId,848 LPVOID lpFindFileData,849 FINDEX_SEARCH_OPS fSearchOp,850 LPVOID lpSearchFilter,851 DWORD dwAdditionalFlags)852 {853 854 dprintf(("KERNEL32: FindFirstFileExA(%08x,%08x,%08x,%08x,%08x,%08x)not implemented - INVALID_HANDLE_VALUE\n",855 lpFileName,856 fInfoLevelId,857 lpFindFileData,858 fSearchOp,859 lpSearchFilter,860 dwAdditionalFlags861 ));862 863 return (INVALID_HANDLE_VALUE);864 }865 866 /*****************************************************************************867 * Name : HANDLE WIN32API FindFirstFileExW868 * Purpose : The FindFirstFileExW function searches a directory for a file869 * whose name and attributes match those specified in the870 * function call.871 * Parameters: LPCWSTR lpFileName pointer to the name of the file872 * to search for873 * FINDEX_INFO_LEVELS fInfoLevelId information level of the returned data874 * LPVOID lpFindFileData pointer to the returned information875 * FINDEX_SEARCH_OPS fSearchOp type of filtering to perform876 * LPVOID lpSearchFilter pointer to search criteria877 * DWORD dwAdditionalFlags additional search control flags878 * Variables :879 * Result : If the function succeeds, the return value is a search handle880 * that can be used in a subsequent call to the FindNextFile or881 * FindClose functions.882 * If the function fails, the return value is INVALID_HANDLE_VALUE883 * Remark :884 * Status : UNTESTED STUB885 *886 * Author : Markus Montkowski [Tha, 1998/05/21 20:57]887 *****************************************************************************/888 889 HANDLE WIN32API FindFirstFileExW( LPCWSTR lpFileName,890 FINDEX_INFO_LEVELS fInfoLevelId,891 LPVOID lpFindFileData,892 FINDEX_SEARCH_OPS fSearchOp,893 LPVOID lpSearchFilter,894 DWORD dwAdditionalFlags)895 {896 897 dprintf(("KERNEL32: FindFirstFileExW(%08x,%08x,%08x,%08x,%08x,%08x)not implemented - INVALID_HANDLE_VALUE\n",898 lpFileName,899 fInfoLevelId,900 lpFindFileData,901 fSearchOp,902 lpSearchFilter,903 dwAdditionalFlags904 ));905 906 return (INVALID_HANDLE_VALUE);907 }908 909 805 /***************************************************************************** 910 806 * Name : int WIN32API FoldStringA
Note:
See TracChangeset
for help on using the changeset viewer.