diff options
author | Szymon Tokarz <wsx22@o2.pl> | 2013-05-21 16:41:00 +0000 |
---|---|---|
committer | Szymon Tokarz <wsx22@o2.pl> | 2013-05-21 16:41:00 +0000 |
commit | 6b6e144b140f8f3ce2fa6b1de7e6a13d92030caf (patch) | |
tree | 79dd830b197c5c5638b29df6b726f413a22034c9 /plugins/LotusNotify/src/lotusnotes.cpp | |
parent | ca5fa0ee002d6c18d03817053362bad866a78e90 (diff) |
LotusNotify plugin by MaKaRSoFT adapted by me.
plugin from: http://maciej.wycik.pl/p_lotusnotify.php
base sources from: https://code.google.com/p/makarplugins/
- Miranda NG version
- unicode support
- many fixes and code reworks
git-svn-id: http://svn.miranda-ng.org/main/trunk@4780 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/LotusNotify/src/lotusnotes.cpp')
-rw-r--r-- | plugins/LotusNotify/src/lotusnotes.cpp | 84 |
1 files changed, 84 insertions, 0 deletions
diff --git a/plugins/LotusNotify/src/lotusnotes.cpp b/plugins/LotusNotify/src/lotusnotes.cpp new file mode 100644 index 0000000000..447efa0d0d --- /dev/null +++ b/plugins/LotusNotify/src/lotusnotes.cpp @@ -0,0 +1,84 @@ +#include "stdafx.h"
+#include "lotusnotes.h"
+
+OSPATHNETCONSTRUCT OSPathNetConstruct1;
+NOTESINITEXTENDED NotesInitExtended1;
+NSFDBOPEN NSFDbOpen1;
+SECKFMGETUSERNAME SECKFMGetUserName1;
+NSFDBGETUNREADNOTETABLE NSFDbGetUnreadNoteTable1;
+NSFDBUPDATEUNREAD NSFDbUpdateUnread1;
+IDSCAN IDScan1;
+NSFNOTEOPEN NSFNoteOpen1;
+NSFDBGETNOTEINFO NSFDbGetNoteInfo1;
+NSFITEMGETTEXT NSFItemGetText1;
+NSFITEMGETTIME NSFItemGetTime1;
+CONVERTTIMEDATETOTEXT ConvertTIMEDATEToText1;
+OSTRANSLATE OSTranslate1;
+MAILGETMESSAGEATTACHMENTINFO MailGetMessageAttachmentInfo1;
+NSFNOTECLOSE NSFNoteClose1;
+IDDESTROYTABLE IDDestroyTable1;
+NSFDBCLOSE NSFDbClose1;
+OSLOADSTRING OSLoadString1;
+NOTESTERM NotesTerm1;
+OSGETENVIRONMENTSTRING OSGetEnvironmentString1;
+OSSETENVIRONMENTVARIABLE OSSetEnvironmentVariable1;
+NSGETSERVERLIST NSGetServerList1;
+OSLOCKOBJECT OSLockObject1;
+OSUNLOCKOBJECT OSUnlockObject1;
+OSMEMFREE OSMemFree1;
+EMREGISTER EMRegister1;
+EMDEREGISTER EMDeregister1;
+NOTESINITTHREAD NotesInitThread1;
+NOTESTERMTHREAD NotesTermThread1;
+
+BOOL HookLotusFunctions()
+{
+ return (
+ (OSPathNetConstruct1 = (OSPATHNETCONSTRUCT)GetProcAddress(hLotusDll, "OSPathNetConstruct"))
+ && (NotesInitExtended1 = (NOTESINITEXTENDED)GetProcAddress(hLotusDll, "NotesInitExtended"))
+ && (NSFDbOpen1 = (NSFDBOPEN)GetProcAddress(hLotusDll, "NSFDbOpen"))
+ && (SECKFMGetUserName1 = (SECKFMGETUSERNAME)GetProcAddress(hLotusDll, "SECKFMGetUserName"))
+ && (NSFDbGetUnreadNoteTable1 = (NSFDBGETUNREADNOTETABLE)GetProcAddress(hLotusDll, "NSFDbGetUnreadNoteTable"))
+ && (NSFDbUpdateUnread1 = (NSFDBUPDATEUNREAD)GetProcAddress(hLotusDll, "NSFDbUpdateUnread"))
+ && (IDScan1 = (IDSCAN)GetProcAddress(hLotusDll, "IDScan"))
+ && (NSFNoteOpen1 = (NSFNOTEOPEN)GetProcAddress(hLotusDll, "NSFNoteOpen"))
+ && (NSFDbGetNoteInfo1 = (NSFDBGETNOTEINFO)GetProcAddress(hLotusDll, "NSFDbGetNoteInfo"))
+ && (NSFItemGetText1 = (NSFITEMGETTEXT)GetProcAddress(hLotusDll, "NSFItemGetText"))
+ && (NSFItemGetTime1 = (NSFITEMGETTIME)GetProcAddress(hLotusDll, "NSFItemGetTime"))
+ && (ConvertTIMEDATEToText1 = (CONVERTTIMEDATETOTEXT)GetProcAddress(hLotusDll, "ConvertTIMEDATEToText"))
+ && (OSTranslate1 = (OSTRANSLATE)GetProcAddress(hLotusDll, "OSTranslate"))
+ && (MailGetMessageAttachmentInfo1 = (MAILGETMESSAGEATTACHMENTINFO)GetProcAddress(hLotusDll, "MailGetMessageAttachmentInfo"))
+ && (NSFNoteClose1 = (NSFNOTECLOSE)GetProcAddress(hLotusDll, "NSFNoteClose"))
+ && (IDDestroyTable1 = (IDDESTROYTABLE)GetProcAddress(hLotusDll, "IDDestroyTable"))
+ && (NSFDbClose1 = (NSFDBCLOSE)GetProcAddress(hLotusDll, "NSFDbClose"))
+ && (OSLoadString1 = (OSLOADSTRING)GetProcAddress(hLotusDll, "OSLoadString"))
+ && (NotesTerm1 = (NOTESTERM)GetProcAddress(hLotusDll, "NotesTerm"))
+ && (OSGetEnvironmentString1 = (OSGETENVIRONMENTSTRING)GetProcAddress(hLotusDll, "OSGetEnvironmentString"))
+ && (OSSetEnvironmentVariable1 = (OSSETENVIRONMENTVARIABLE)GetProcAddress(hLotusDll, "OSSetEnvironmentVariable"))
+ && (NSGetServerList1 = (NSGETSERVERLIST)GetProcAddress(hLotusDll, "NSGetServerList"))
+ && (OSLockObject1 = (OSLOCKOBJECT)GetProcAddress(hLotusDll, "OSLockObject"))
+ && (OSUnlockObject1 = (OSUNLOCKOBJECT)GetProcAddress(hLotusDll, "OSUnlockObject"))
+ && (OSMemFree1 = (OSMEMFREE)GetProcAddress(hLotusDll, "OSMemFree"))
+ && (EMRegister1 = (EMREGISTER)GetProcAddress(hLotusDll, "EMRegister"))
+ && (EMDeregister1 = (EMDEREGISTER)GetProcAddress(hLotusDll, "EMDeregister"))
+ && (NotesInitThread1 = (NOTESINITTHREAD)GetProcAddress(hLotusDll, "NotesInitThread"))
+ && (NotesTermThread1 = (NOTESTERMTHREAD)GetProcAddress(hLotusDll, "NotesTermThread"))
+ ) ? TRUE : FALSE;
+}
+
+void GetLotusPath(TCHAR *sTemp, DWORD size)
+{
+ DWORD rc;
+ HKEY dmKey;
+
+ rc = RegOpenKeyEx( HKEY_LOCAL_MACHINE , TEXT("Software\\Lotus\\Notes") ,0, KEY_QUERY_VALUE, &dmKey );
+
+ if (rc != ERROR_SUCCESS) {
+ return;
+ }
+
+ RegQueryValueEx( dmKey, TEXT("Path"), NULL, NULL, (BYTE*)sTemp, &size );
+ RegCloseKey(dmKey);
+ return;
+}
+
|