aboutsummaryrefslogtreecommitdiff
path: root/src/client/windows/README
diff options
context:
space:
mode:
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.