diff options
author | Tobias Weimer <wishmaster51@googlemail.com> | 2013-08-23 12:05:26 +0000 |
---|---|---|
committer | Tobias Weimer <wishmaster51@googlemail.com> | 2013-08-23 12:05:26 +0000 |
commit | d3f0f130d7c6eab9c723dcb06d64853bcedd7035 (patch) | |
tree | f7f40fcb7aca760da94251ed46653caf0c180559 /plugins/YAMN/src/main.h | |
parent | 264e076f02faca0cfd59e5b0929d74ca621119cb (diff) |
use mir_sntprintf
git-svn-id: http://svn.miranda-ng.org/main/trunk@5791 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/YAMN/src/main.h')
-rw-r--r-- | plugins/YAMN/src/main.h | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/plugins/YAMN/src/main.h b/plugins/YAMN/src/main.h index 7f909df2ca..eacb470e69 100644 --- a/plugins/YAMN/src/main.h +++ b/plugins/YAMN/src/main.h @@ -1,11 +1,11 @@ #ifndef __MAIN_H
#define __MAIN_H
-#define YAMN_NEWMAILSNDDESC LPGEN("YAMN: new mail message") -#define YAMN_CONNECTFAILSNDDESC LPGEN("YAMN: connect failed") -#define YAMN_CONNECTFAILSOUND "YAMN/Sound/ConnectFail" -#define YAMN_NEWMAILSOUND "YAMN/Sound/NewMail" - +#define YAMN_NEWMAILSNDDESC LPGEN("YAMN: new mail message")
+#define YAMN_CONNECTFAILSNDDESC LPGEN("YAMN: connect failed")
+#define YAMN_CONNECTFAILSOUND "YAMN/Sound/ConnectFail"
+#define YAMN_NEWMAILSOUND "YAMN/Sound/NewMail"
+
#define YAMN_DBMODULE "YAMN"
#define YAMN_DBPOSX "MailBrowserWinX"
#define YAMN_DBPOSY "MailBrowserWinY"
@@ -33,5 +33,7 @@ extern unsigned char optDateTime; // Loading Icon and checking for icolib
void LoadIcons();
+typedef INT_PTR (*LOADFILTERFCN)(MIRANDASERVICE GetYAMNFcn);
+
#endif
|