1 /* 2 * File image.c - managing images 3 * 4 * Copyright (C) 2004, Eric Pouech 5 * 6 * This library is free software; you can redistribute it and/or 7 * modify it under the terms of the GNU Lesser General Public 8 * License as published by the Free Software Foundation; either 9 * version 2.1 of the License, or (at your option) any later version. 10 * 11 * This library is distributed in the hope that it will be useful, 12 * but WITHOUT ANY WARRANTY; without even the implied warranty of 13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 14 * Lesser General Public License for more details. 15 * 16 * You should have received a copy of the GNU Lesser General Public 17 * License along with this library; if not, write to the Free Software 18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA 19 */ 20 21 #include "config.h" 22 #include <stdlib.h> 23 #include <stdio.h> 24 #include <string.h> 25 26 #include "dbghelp_private.h" 27 #include "winternl.h" 28 #include "wine/debug.h" 29 30 WINE_DEFAULT_DEBUG_CHANNEL(dbghelp); 31 32 /*********************************************************************** 33 * GetTimestampForLoadedLibrary (DBGHELP.@) 34 */ 35 DWORD WINAPI GetTimestampForLoadedLibrary(HMODULE Module) 36 { 37 IMAGE_NT_HEADERS* nth = RtlImageNtHeader(Module); 38 return (nth) ? nth->FileHeader.TimeDateStamp : 0; 39 } 40 41 /*********************************************************************** 42 * MapDebugInformation (DBGHELP.@) 43 */ 44 PIMAGE_DEBUG_INFORMATION WINAPI MapDebugInformation(HANDLE FileHandle, PCSTR FileName, 45 PCSTR SymbolPath, ULONG ImageBase) 46 { 47 FIXME("(%p, %s, %s, 0x%08x): stub\n", FileHandle, FileName, SymbolPath, ImageBase); 48 SetLastError(ERROR_CALL_NOT_IMPLEMENTED); 49 return NULL; 50 } 51 52 /*********************************************************************** 53 * UnmapDebugInformation (DBGHELP.@) 54 */ 55 BOOL WINAPI UnmapDebugInformation(PIMAGE_DEBUG_INFORMATION DebugInfo) 56 { 57 FIXME("(%p): stub\n", DebugInfo); 58 SetLastError(ERROR_CALL_NOT_IMPLEMENTED); 59 return FALSE; 60 } 61