aboutsummaryrefslogtreecommitdiff
path: root/src/client/windows/README
diff options
context:
space:
mode:
authorbryner <bryner@4c0a9323-5329-0410-9bdc-e9ce6186880e>2006-09-28 19:35:08 +0000
committerbryner <bryner@4c0a9323-5329-0410-9bdc-e9ce6186880e>2006-09-28 19:35:08 +0000
commitf140025664719fa6a11d97ae76a3e74eccc8fbf9 (patch)
tree5d5cfff6f2b5ceb9d92a39141171788cbe90e570 /src/client/windows/README
parentInitial version of Windows exception handler and crash report sender classes (diff)
downloadbreakpad-f140025664719fa6a11d97ae76a3e74eccc8fbf9.tar.xz
Add static-CRT build configurations. Get rid of the largely redundant README,
moving the linkage comments to the corresponding headers. git-svn-id: http://google-breakpad.googlecode.com/svn/trunk@37 4c0a9323-5329-0410-9bdc-e9ce6186880e
Diffstat (limited to 'src/client/windows/README')
-rw-r--r--src/client/windows/README22
1 files changed, 0 insertions, 22 deletions
diff --git a/src/client/windows/README b/src/client/windows/README
deleted file mode 100644
index 380324fd..00000000
--- a/src/client/windows/README
+++ /dev/null
@@ -1,22 +0,0 @@
-This directory contains client code for collecting and sending minidumps.
-You can use them in your project as follows:
-
-exception_handler.lib:
-
-This library should be linked into the application from which you want
-to collect crash reports. See the comments in exception_handler.h for
-instructions on setting up the handler to write minidumps on crash.
-You can also use ExceptionHandler to write non-crash minidumps.
-
-When linking with this static library, you will need to also link with
-rpcrt4.lib and ole32.lib.
-
-crash_report_sender.lib:
-
-Typically, after catching a crash, you will launch an external application
-to collect any additional information from the user, and upload the report to
-the server. CrashReportSender is a utility class that can be used when the
-data is ready to upload.
-
-When linking with this static library, you will need to also link with
-wininet.lib.