summaryrefslogtreecommitdiff
path: root/plugins/AutoShutdown/docs/Shutdown-Developer.txt
diff options
context:
space:
mode:
authorKirill Volinsky <mataes2007@gmail.com>2012-06-29 05:38:03 +0000
committerKirill Volinsky <mataes2007@gmail.com>2012-06-29 05:38:03 +0000
commitaf7e438cfe8ce85e1da234318ed1584e89d952cc (patch)
tree4cdb1379ef8d6c00389aa89cfb27a404ae2aba56 /plugins/AutoShutdown/docs/Shutdown-Developer.txt
parent230623d50baff4e8bf13a8572e0b895bad7b7ed4 (diff)
only add some plugins and protocols, not adapted
See please maybe not all need us git-svn-id: http://svn.miranda-ng.org/main/trunk@678 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/AutoShutdown/docs/Shutdown-Developer.txt')
-rw-r--r--plugins/AutoShutdown/docs/Shutdown-Developer.txt49
1 files changed, 49 insertions, 0 deletions
diff --git a/plugins/AutoShutdown/docs/Shutdown-Developer.txt b/plugins/AutoShutdown/docs/Shutdown-Developer.txt
new file mode 100644
index 0000000000..9b15e2b09b
--- /dev/null
+++ b/plugins/AutoShutdown/docs/Shutdown-Developer.txt
@@ -0,0 +1,49 @@
+
+AutoShutdown 1.4.0.2 for Miranda IM 0.7+
+------------------------------------------------------------------------
+ Developer Information
+
+ Contents: -------------------------------
+ | Translation, Services/Events,
+ | Debug Symbols, Coding Language, Rebase Info
+
+Translation
+-----------------
+ The translation string listing can be found in
+ 'Shutdown-Translation.txt'.
+
+Services/Events
+-----------------
+ For more information about which service functions are offered by
+ 'AutoShutdown' and about how they can be used by your plugin,
+ please refer to 'm_shutdown.h'.
+ If you would like to use Delphi/Pascal please refer to 'm_shutdown.inc'.
+
+ Feel free to redirect any questions or extension ideas to me via e-mail:
+ hrathh at users.sourceforge.net
+
+Debug Symbols
+-----------------
+ Debug symbols are also available for debugging purposes.
+ Copy the PDB-files in the SDK-zip into the same directory as the
+ corresponding DLL-files.
+
+ To debug crashes the supplied MAP-file file might be helpful.
+
+Coding Language
+-----------------
+ 'AutoShutdown' was written using Microsoft Visual C++ 6.0 SP6
+ and the Microsoft Platform SDK shipped along with it.
+
+Rebase Info
+-----------------
+ 'AutoShutdown' has set its base address to:
+ 0x11070000
+
+ Please avoid using this base address for your plugins because it will
+ slightly slow down startup of Miranda IM.
+
+ With Microsoft Visual C++ the Base Address can be configured at:
+ 'Project' -> 'Settings' -> 'Linker' -> 'Output' -> 'Base Address'
+
+H. Herkenrath (hrathh at users.sourceforge.net)