Changeset 607 for trunk/src/kernel32/stubs.cpp
- Timestamp:
- Aug 21, 1999, 6:30:53 PM (26 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/kernel32/stubs.cpp
r559 r607 1 /* $Id: stubs.cpp,v 1.6 1999-08-18 22:00:58 phaller Exp $ */ 2 3 /* 4 * 5 * Project Odin Software License can be found in LICENSE.TXT 6 * 7 */ 1 /* $Id: stubs.cpp,v 1.7 1999-08-21 16:29:28 sandervl Exp $ */ 2 8 3 /* 9 4 * Win32 KERNEL32 Subsystem for OS/2 … … 12 7 * 13 8 * @(#) Stubs.H 1.0.0 1998/05/19 PH start 9 * 10 * Project Odin Software License can be found in LICENSE.TXT 11 * 14 12 */ 15 13 … … 1955 1953 } 1956 1954 1957 /*****************************************************************************1958 * Name : BOOL WIN32API FlushViewOfFile1959 * Purpose : The FlushViewOfFile function writes to the disk a byte range1960 * within a mapped view of a file.1961 * Parameters: LPCVOID lpBaseAddress start address of byte range to flush1962 * DWORD dwNumberOfBytesToFlush number of bytes in range1963 * Variables :1964 * Result : If the function succeeds, the return value is nonzero.1965 * If the function fails, the return value is zero1966 * Remark :1967 * Status : UNTESTED STUB1968 *1969 * Author : Markus Montkowski [Tha, 1998/05/21 20:57]1970 *****************************************************************************/1971 1972 BOOL WIN32API FlushViewOfFile(LPCVOID lpBaseAddress,1973 DWORD dwNumberOfBytesToFlush)1974 {1975 1976 dprintf(("KERNEL32:FlushViewOfFile(%08x,%08x) not implemented\n",1977 lpBaseAddress,1978 dwNumberOfBytesToFlush1979 ));1980 1981 return (FALSE);1982 }1983 1955 1984 1956 /***************************************************************************** … … 2663 2635 } 2664 2636 2665 2666 /*****************************************************************************2667 * Name : HANDLE OpenFileMappingA2668 * Purpose : The OpenFileMappingA function opens a named file-mapping object.2669 * Parameters: DWORD dwDesiredAccess access mode2670 * BOOL bInheritHandle inherit flag2671 * LPCTSTR lpName address of name of file-mapping object2672 * Variables :2673 * Result : HANDLE to map object2674 * Remark :2675 * Status : UNTESTED STUB2676 *2677 * Author : Patrick Haller [Mon, 1998/06/15 08:00]2678 *****************************************************************************/2679 2680 HANDLE WIN32API OpenFileMappingA(DWORD dwDesiredAccess,2681 BOOL bInheritHandle,2682 LPCTSTR lpName)2683 {2684 dprintf(("Kernel32: OpenFileMappingA(%08xh,%08xh,%s) not implemented.\n",2685 dwDesiredAccess,2686 bInheritHandle,2687 lpName));2688 2689 return (0);2690 }2691 2692 2693 /*****************************************************************************2694 * Name : HANDLE OpenFileMappingW2695 * Purpose : The OpenFileMappingW function opens a named file-mapping object.2696 * Parameters: DWORD dwDesiredAccess access mode2697 * BOOL bInheritHandle inherit flag2698 * LPCTSTR lpName address of name of file-mapping object2699 * Variables :2700 * Result : HANDLE to map object2701 * Remark :2702 * Status : UNTESTED STUB2703 *2704 * Author : Patrick Haller [Mon, 1998/06/15 08:00]2705 *****************************************************************************/2706 2707 HANDLE WIN32API OpenFileMappingW(DWORD dwDesiredAccess,2708 BOOL bInheritHandle,2709 LPCWSTR lpName)2710 {2711 dprintf(("Kernel32: OpenFileMappingW(%08xh,%08xh,%s) not implemented.\n",2712 dwDesiredAccess,2713 bInheritHandle,2714 lpName));2715 2716 return (0);2717 }2718 2637 2719 2638
Note:
See TracChangeset
for help on using the changeset viewer.