summaryrefslogtreecommitdiff
path: root/plugins/variables/variables.h
diff options
context:
space:
mode:
authorKirill Volinsky <mataes2007@gmail.com>2012-05-18 22:02:50 +0000
committerKirill Volinsky <mataes2007@gmail.com>2012-05-18 22:02:50 +0000
commitf920ef497f3299ae24fe783ce03bdd93b419f764 (patch)
treebdaa9197c08d29ab141a6adfdd6cc0a68ddd3996 /plugins/variables/variables.h
parent6c3b0571f0678da0512069869afaa284c054377e (diff)
plugins folders renaming
git-svn-id: http://svn.miranda-ng.org/main/trunk@60 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/variables/variables.h')
-rw-r--r--plugins/variables/variables.h177
1 files changed, 0 insertions, 177 deletions
diff --git a/plugins/variables/variables.h b/plugins/variables/variables.h
deleted file mode 100644
index eca0b1acd8..0000000000
--- a/plugins/variables/variables.h
+++ /dev/null
@@ -1,177 +0,0 @@
-/*
- Variables Plugin for Miranda-IM (www.miranda-im.org)
- Copyright 2003-2006 P. Boon
-
- This program is free software; you can redistribute it and/or modify
- it under the terms of the GNU General Public License as published by
- the Free Software Foundation; either version 2 of the License, or
- (at your option) any later version.
-
- This program is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- GNU General Public License for more details.
-
- You should have received a copy of the GNU General Public License
- along with this program; if not, write to the Free Software
- Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
-*/
-#if defined( UNICODE ) && !defined( _UNICODE )
-# define _UNICODE
-#endif
-
-#define MIRANDA_VER 0x0A00
-
-#include <tchar.h>
-
-#include <windows.h>
-#include <commctrl.h>
-#include "uxtheme.h"
-#include <stdio.h>
-#include <time.h>
-#include "resource.h"
-#ifndef WINE
-#include <win2k.h>
-#endif
-#include <newpluginapi.h>
-#include <m_system.h>
-#include <m_langpack.h>
-#include <m_database.h>
-#include <m_protosvc.h>
-#include <m_clist.h>
-#include <m_contacts.h>
-#include <m_awaymsg.h>
-#include <m_options.h>
-#include <m_utils.h>
-#include <m_icolib.h>
-#include "m_variables.h"
-//#include "dbhelpers.h"
-#define MODULENAME "Variables"
-//#define LOGLEVEL __LOGLEVEL_DEBUG
-#include "../helpers/gen_helpers.h"
-#include "../helpers/db_helpers.h"
-
-#define SETTING_STARTUPTEXT "StartupText"
-#define SETTING_STRIPCRLF "StripCRLF"
-#define SETTING_STRIPWS "StripWS"
-#define SETTING_STRIPALL "StripAll"
-#define SETTING_PARSEATSTARTUP "ParseAtStartup"
-#define SETTING_SPLITTERPOS "SplitterPos"
-#define SETTING_SUBJECT "LastSubject"
-
-#define FIELD_CHAR '%'
-#define FUNC_CHAR '?'
-#define FUNC_ONCE_CHAR '!'
-#define DONTPARSE_CHAR '`'
-#define TRYPARSE_CHAR_OPEN '['
-#define TRYPARSE_CHAR_CLOSE ']'
-#define COMMENT_STRING "#"
-
-// special tokens
-#define SUBJECT "subject"
-#define EXTRATEXT "extratext"
-
-// options
-#define IDT_PARSE 1
-#define DM_SPLITTERMOVED (WM_USER+15)
-
-// Messages you can send to the help window:
-#define VARM_PARSE (WM_APP+11) // wParam=lParam=0
-#define VARM_SETINPUTTEXT (WM_APP+12)
-#define VARM_GETINPUTTEXT (WM_APP+13)
-#define VARM_GETINPUTTEXTLENGTH (WM_APP+14)
-#define VARM_SETSUBJECT (WM_APP+15)
-#define VARM_GETSUBJECT (WM_APP+16) // wParam=HANDLE hContact
-#define VARM_SETEXTRATEXT (WM_APP+17)
-#define VARM_GETEXTRATEXT (WM_APP+18)
-#define VARM_GETEXTRATEXTLENGTH (WM_APP+19)
-#define VARM_GETDIALOG (WM_APP+20)
-
-// if a different struct internally is used, we can use TOKENREGISTEREX
-#define TOKENREGISTEREX TOKENREGISTER
-
-// old struct
-typedef struct {
- int cbSize;
- char *szFormat;
- char *szSource;
- HANDLE hContact;
- int pCount; // number of succesful parses
- int eCount; // number of failures
-} FORMATINFOV1;
-
-struct ParseOptions {
- BOOL bStripEOL;
- BOOL bStripWS;
- BOOL bStripAll;
-};
-
-// variables.c
-//TCHAR *getArguments(char *string, char ***aargv, int *aargc);
-//int isValidTokenChar(char c);
-TCHAR *formatString(FORMATINFO *fi);
-int setParseOptions(struct ParseOptions *po);
-int LoadVarModule();
-int UnloadVarModule();
-// tokenregister.c
-int registerIntToken(TCHAR *szToken, TCHAR *(*parseFunction)(ARGUMENTSINFO *ai), int extraFlags, char* szHelpText);
-INT_PTR registerToken(WPARAM wParam, LPARAM lParam);
-int deRegisterToken(TCHAR *var);
-TOKENREGISTEREX *searchRegister(TCHAR *var, int type);
-TCHAR *parseFromRegister(ARGUMENTSINFO *ai);
-TOKENREGISTEREX *getTokenRegister(int i);
-int getTokenRegisterCount();
-TOKENREGISTER *getTokenRegisterByIndex(int i);
-void deRegisterTemporaryVariables();
-int initTokenRegister();
-int deinitTokenRegister();
-// contact.c
-BYTE getContactInfoType(TCHAR* type);
-TCHAR* getContactInfoT(BYTE type, HANDLE hContact, int tchar);
-int getContactFromString( CONTACTSINFO* );
-int initContactModule();
-int deinitContactModule();
-// alias
-int registerAliasTokens();
-void unregisterAliasTokens();
-// system
-int registerSystemTokens();
-// external
-int registerExternalTokens();
-int deInitExternal();
-// miranda
-int registerMirandaTokens();
-// str
-int registerStrTokens();
-// variables
-int registerVariablesTokens();
-void unregisterVariablesTokens();
-int clearVariableRegister();
-// logic
-int registerLogicTokens();
-// math
-int registerMathTokens();
-// metacontacts
-int registerMetaContactsTokens();
-// options
-int OptionsInit(WPARAM wParam, LPARAM lParam);
-// reg exp
-int registerRegExpTokens();
-// inet
-int registerInetTokens();
-// xml
-int registerXsltTokens();
-// trigger
-int initTriggerModule();
-// help
-INT_PTR showHelpService(WPARAM wParam, LPARAM lParam);
-INT_PTR showHelpExService(WPARAM wParam, LPARAM lParam);
-INT_PTR getSkinItemService(WPARAM wParam, LPARAM lParam);
-int iconsChanged(WPARAM wParam, LPARAM lParam);
-
-char* u2a( wchar_t* src );
-wchar_t* a2u( char* src );
-int ttoi(TCHAR *string);
-TCHAR *itot(int num);
-
-extern DWORD g_mirandaVersion; \ No newline at end of file