diff options
author | sagitario <sagitario@fc51e93f-b9fe-4711-8d8d-3ae870c5f7d8> | 2010-03-12 11:59:48 (GMT) |
---|---|---|
committer | sagitario <sagitario@fc51e93f-b9fe-4711-8d8d-3ae870c5f7d8> | 2010-03-12 11:59:48 (GMT) |
commit | b5b9076d2370cb7a5d9fe30c7ffee38e19def0c7 (patch) | |
tree | 0bbbff37a578e45219e595888e388ed8cb526ff3 /src/main.cpp | |
parent | ca2d69f4a43f7209113ceee6773bd04bbe6bd317 (diff) | |
download | cv2pdb-b5b9076d2370cb7a5d9fe30c7ffee38e19def0c7.zip cv2pdb-b5b9076d2370cb7a5d9fe30c7ffee38e19def0c7.tar.gz cv2pdb-b5b9076d2370cb7a5d9fe30c7ffee38e19def0c7.tar.bz2 |
* names of local function are now demangled
* added managed C++ project to integrate cv2pdb with CLR
Diffstat (limited to 'src/main.cpp')
-rw-r--r-- | src/main.cpp | 38 |
1 files changed, 19 insertions, 19 deletions
diff --git a/src/main.cpp b/src/main.cpp index 98c6d7f..55bbf8c 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -3,25 +3,25 @@ //
// License for redistribution is given by the Artistic License 2.0
// see file LICENSE for further details
- -#include "PEImage.h" -#include "cv2pdb.h" - -#include <direct.h> - -double -#include "../VERSION" -; - -void fatal(const char *message, ...) -{ - va_list argptr; - va_start(argptr, message); - vprintf(message, argptr); - va_end(argptr); - printf("\n"); - exit(1); -} +
+#include "PEImage.h"
+#include "cv2pdb.h"
+
+#include <direct.h>
+
+double
+#include "../VERSION"
+;
+
+void fatal(const char *message, ...)
+{
+ va_list argptr;
+ va_start(argptr, message);
+ vprintf(message, argptr);
+ va_end(argptr);
+ printf("\n");
+ exit(1);
+}
void makefullpath(char* pdbname)
{
|