Home | Info | Community | Development | myReactOS | Contact Us
ReactOS Development > Doxygenprecomp.h
Go to the documentation of this file.
00001 /* 00002 * COPYRIGHT: See COPYING in the top level directory 00003 * PROJECT: ReactOS System Libraries 00004 * FILE: lib/imagehlp/precomp.h 00005 * PURPOSE: Imagehlp Libary Header 00006 * PROGRAMMER: Alex Ionescu (alex@relsoft.net) 00007 */ 00008 00009 /* INCLUDES ******************************************************************/ 00010 00011 /* Definitions */ 00012 #define _CRT_SECURE_NO_DEPRECATE 00013 #define NTOS_MODE_USER 00014 #define WIN32_NO_STATUS 00015 00016 /* PSDK/NDK Headers */ 00017 #include <windows.h> 00018 #include <imagehlp.h> 00019 #include <ndk/umtypes.h> 00020 #include <ndk/rtlfuncs.h> 00021 00022 /* C STDLIB Headers */ 00023 #include <stdio.h> 00024 00025 /* TYPES *********************************************************************/ 00026 00027 typedef struct _BOUND_FORWARDER_REFS 00028 { 00029 struct _BOUND_FORWARDER_REFS *Next; 00030 ULONG TimeDateStamp; 00031 LPSTR ModuleName; 00032 } BOUND_FORWARDER_REFS, *PBOUND_FORWARDER_REFS; 00033 00034 typedef struct _IMPORT_DESCRIPTOR 00035 { 00036 struct _IMPORT_DESCRIPTOR *Next; 00037 LPSTR ModuleName; 00038 ULONG TimeDateStamp; 00039 USHORT ForwaderReferences; 00040 PBOUND_FORWARDER_REFS Forwarders; 00041 } IMPORT_DESCRIPTOR, *PIMPORT_DESCRIPTOR; 00042 00043 /* DATA **********************************************************************/ 00044 00045 extern HANDLE IMAGEHLP_hHeap; 00046 00047 /* FUNCTIONS *****************************************************************/ 00048 00049 BOOL 00050 IMAGEAPI 00051 UnloadAllImages(VOID); 00052 00053 /* EOF */ Generated on Sat May 26 2012 04:15:26 for ReactOS by
1.7.6.1
|