diff options
author | Vadim Dashevskiy <watcherhd@gmail.com> | 2012-07-23 13:49:28 +0000 |
---|---|---|
committer | Vadim Dashevskiy <watcherhd@gmail.com> | 2012-07-23 13:49:28 +0000 |
commit | a9580df150d799246eaecbf3c1fb5cecf9f8ab49 (patch) | |
tree | ce046b1cd432d65718c9f6af80521d533ce6d4ca /plugins/Sessions/Src | |
parent | 60338d55bb73d0c45b6e092703c4bb88a3c49755 (diff) |
SecureIM, SeenPlugin, SendSS, Sessions: changed folder structure
git-svn-id: http://svn.miranda-ng.org/main/trunk@1122 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/Sessions/Src')
-rw-r--r-- | plugins/Sessions/Src/Resource.h | 58 | ||||
-rw-r--r-- | plugins/Sessions/Src/Sessions.h | 4 | ||||
-rw-r--r-- | plugins/Sessions/Src/Version.h | 21 |
3 files changed, 81 insertions, 2 deletions
diff --git a/plugins/Sessions/Src/Resource.h b/plugins/Sessions/Src/Resource.h new file mode 100644 index 0000000000..0a70198bcf --- /dev/null +++ b/plugins/Sessions/Src/Resource.h @@ -0,0 +1,58 @@ +//{{NO_DEPENDENCIES}}
+// Microsoft Visual C++ generated include file.
+// Used by sessions.rc
+//
+#define IDD_OPTIONS 101
+#define IDI_SESSIONS 102
+#define IDI_SESSIONS_LOAD 103
+#define IDD_SESSIONS_SAVE 104
+#define IDD_SESSIONS_LOADLAST 105
+
+#define IDD_SESSION_CHECKED 106
+#define IDD_SESSION_UNCHECKED 107
+
+#define IDD_WLCMDIALOG 120
+#define IDD_SAVEDIALOG 121
+#define IDD_EXDIALOG 123
+#define IDC_LIST 1020
+#define IDC_STARTDIALOG 1021
+#define IDC_STARTDELAY 1022
+#define IDC_STATICMS 1023
+#define IDC_STATICOP 1024
+#define IDC_SANDCCHECK 1025
+#define IDC_SESSDEL 1026
+#define IDC_ADDTOMENU 1027
+#define IDC_SELCONTACTS 1029
+#define IDC_CLIST 1032
+#define IDC_ADDTBUTTON 1033
+#define IDC_OPCLIST 1034
+#define IDC_DEL 1036
+#define IDC_EDIT 1037
+#define IDC_SAVE 1038
+#define IDC_EMCLIST 1039
+#define IDC_REXSAVE 1040
+#define IDC_REXDSAVE 1041
+#define IDC_REXASK 1043
+#define IDC_RLOADLAST 1045
+#define IDC_RNOTHING 1047
+#define IDC_CHECKLAST 1049
+#define IDC_TRACK 1051
+#define IDC_SPIN1 1052
+#define IDC_EXSTATIC1 1054
+#define IDC_EXSTATIC2 1055
+#define IDC_EXCLHIDDEN 1056
+#define IDC_LASTHIDDENWARN 1057
+#define IDC_WARNINGS 1058
+#define IDC_CRASHRECOVERY 1059
+#define IDC_STATIC -1
+
+// Next default values for new objects
+//
+#ifdef APSTUDIO_INVOKED
+#ifndef APSTUDIO_READONLY_SYMBOLS
+#define _APS_NEXT_RESOURCE_VALUE 124
+#define _APS_NEXT_COMMAND_VALUE 40015
+#define _APS_NEXT_CONTROL_VALUE 1059
+#define _APS_NEXT_SYMED_VALUE 1125
+#endif
+#endif
diff --git a/plugins/Sessions/Src/Sessions.h b/plugins/Sessions/Src/Sessions.h index 18c2878938..11883cae42 100644 --- a/plugins/Sessions/Src/Sessions.h +++ b/plugins/Sessions/Src/Sessions.h @@ -43,8 +43,8 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. #include "m_sessions.h"
#include "Utils.h"
-#include "../Version.h"
-#include "../Resource.h"
+#include "Version.h"
+#include "Resource.h"
extern HANDLE hibChecked;
extern HANDLE hibNotChecked;
diff --git a/plugins/Sessions/Src/Version.h b/plugins/Sessions/Src/Version.h new file mode 100644 index 0000000000..44e6d972f4 --- /dev/null +++ b/plugins/Sessions/Src/Version.h @@ -0,0 +1,21 @@ +#define __MAJOR_VERSION 0
+#define __MINOR_VERSION 1
+#define __RELEASE_NUM 3
+#define __BUILD_NUM 0
+
+#define __FILEVERSION_STRING __MAJOR_VERSION,__MINOR_VERSION,__RELEASE_NUM,__BUILD_NUM
+#define __FILEVERSION_DOTS __MAJOR_VERSION.__MINOR_VERSION.__RELEASE_NUM.__BUILD_NUM
+
+#define __STRINGIFY_IMPL(x) #x
+#define __STRINGIFY(x) __STRINGIFY_IMPL(x)
+#define __VERSION_STRING __STRINGIFY(__FILEVERSION_DOTS)
+
+
+#define __PLUGIN_NAME "Sessions"
+#define __INTERNAL_NAME "Sessions"
+#define __FILENAME "Sessions.dll"
+#define __DESCRIPTION "Sessions Manager for Miranda IM."
+#define __AUTHOR "MaD_CLuSTeR"
+#define __AUTHOREMAIL "daniok@yandex.ru"
+#define __AUTHORWEB "http://miranda.radicaled.ru/index.php?plugin=2"
+#define __COPYRIGHT "© 2007-2008 Danil Mozhar"
|