summaryrefslogtreecommitdiff
path: root/src/VBox/Runtime/common/ldr/ldr.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/VBox/Runtime/common/ldr/ldr.cpp')
-rw-r--r--src/VBox/Runtime/common/ldr/ldr.cpp21
1 files changed, 1 insertions, 20 deletions
diff --git a/src/VBox/Runtime/common/ldr/ldr.cpp b/src/VBox/Runtime/common/ldr/ldr.cpp
index ada4984c6..bbe54edc2 100644
--- a/src/VBox/Runtime/common/ldr/ldr.cpp
+++ b/src/VBox/Runtime/common/ldr/ldr.cpp
@@ -1,4 +1,4 @@
-/* $Id: ldr.cpp $ */
+/* $Id: ldr.cpp 37596 2011-06-22 19:30:06Z vboxsync $ */
/** @file
* IPRT - Binary Image Loader.
*/
@@ -40,25 +40,6 @@
#include "internal/ldr.h"
-/*******************************************************************************
-* Structures and Typedefs *
-*******************************************************************************/
-typedef struct RTLDRREADERFILE
-{
- /** The core. */
- RTLDRREADER Core;
- /** The file. */
- RTFILE File;
- /** The file size. */
- RTFOFF cbFile;
- /** The current offset. */
- RTFOFF off;
- /** The filename (variable size). */
- char szFilename[1];
-} RTLDRREADERFILE, *PRTLDRREADERFILE;
-
-
-
/**
* Checks if a library is loadable or not.
*