summaryrefslogtreecommitdiff
path: root/include/m_system_cpp.h
AgeCommit message (Collapse)Author
2018-04-17MNonCopyable - the common class to avoid declaring fake private constructorsGeorge Hazan
2018-03-16LIST<>::indexOf(T**) - fast index calculation for direct iteratorsGeorge Hazan
2018-03-15LIST<> iterators:George Hazan
- new method LIST::removeItem added to save a pointer to removed record; - code cleaning related to the fact that LIST::remove() shall be the last operation inside an iterator, because otherwise the reference to it will point to a record next to deleted one; - a few remaining cycles converted to iterators
2018-03-15MUCH more effective way of removing records from iteratorsGeorge Hazan
2018-03-15fix for ranged loop boundsGeorge Hazan
2018-03-14reverse iterators for LIST<>George Hazan
2018-02-24general lists: avoid unqualified lookup into dependent bases of class ↵Goraf
templates (it's a Microsoft extension)
2018-02-24more nullptrGoraf
2018-02-20optimizing LIST<> & OBJLIST<> loopsGeorge Hazan
2018-01-01massive copyright updatedartraiden
2017-12-21Tox: improved profile encription managementaunsane
2017-12-11parameters unification between JSON & HTTPGeorge Hazan
2017-12-06convert all files exept curl and new_gpg to utf-8 BOM (reverted from commit ↵Kirill Volinsky
62202ed10617927d5429bc59898e12a366abe744)
2017-12-06convert all files exept curl and new_gpg to utf-8 BOMKirill Volinsky
2017-11-29replace russian с to latin cKirill Volinsky
2017-11-28Source files converted to utf-8Kirill Volinsky
2017-08-05Change rest of Miranda NG links to https://Robert Pösel
2017-02-14fix for include duplicates & recursionsGeorge Hazan
2017-01-01bump copyright yeardartraiden
2016-07-29removing TCHAR + WCHAR from headersGeorge Hazan
git-svn-id: http://svn.miranda-ng.org/main/trunk@17146 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
2016-07-27less TCHARsGeorge Hazan
git-svn-id: http://svn.miranda-ng.org/main/trunk@17138 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
2016-07-26less TCHARs:George Hazan
- TCHAR is replaced with wchar_t everywhere; - LPGENT replaced with either LPGENW or LPGEN; - fixes for ANSI plugins that improperly used _t functions; - TCHAR *t removed from MAllStrings; - ptszGroup, ptszTitle & ptszTab in OPTIONSDIALOGPAGE replaced with pwsz* git-svn-id: http://svn.miranda-ng.org/main/trunk@17133 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
2016-06-04C++ classes moved to m_system_cpp.hMikalaiR
git-svn-id: http://svn.miranda-ng.org/main/trunk@16915 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
2016-06-04code optimization MikalaiR
git-svn-id: http://svn.miranda-ng.org/main/trunk@16912 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
2016-04-07compilation fixGeorge Hazan
git-svn-id: http://svn.miranda-ng.org/main/trunk@16601 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
2016-01-02Copyrights update part 2Dart Raiden
git-svn-id: http://svn.miranda-ng.org/main/trunk@15985 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
2015-08-03pass_ptrA, pass_ptrW and pass_ptrT moved to m_system_cpp.h [по ↵MikalaiR
просьбам трудящихся] git-svn-id: http://svn.miranda-ng.org/main/trunk@14832 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
2015-06-11- typo fix;George Hazan
git-svn-id: http://svn.miranda-ng.org/main/trunk@14124 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
2014-12-31Year 2015 version updateGeorge Hazan
git-svn-id: http://svn.miranda-ng.org/main/trunk@11704 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
2014-12-11warning fixGeorge Hazan
git-svn-id: http://svn.miranda-ng.org/main/trunk@11326 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
2014-08-29these methods should have been declared as constGeorge Hazan
git-svn-id: http://svn.miranda-ng.org/main/trunk@10335 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
2014-07-13wrapping the most evident critical sections into a classGeorge Hazan
git-svn-id: http://svn.miranda-ng.org/main/trunk@9785 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
2014-07-12useful wrapper for critical sectionsGeorge Hazan
git-svn-id: http://svn.miranda-ng.org/main/trunk@9779 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
2014-05-26gcc-related fixesGeorge Hazan
git-svn-id: http://svn.miranda-ng.org/main/trunk@9318 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
2014-01-21minor code cleaningGeorge Hazan
git-svn-id: http://svn.miranda-ng.org/main/trunk@7820 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
2014-01-02added destructor LIST::~LIST, that calls destroy() automatically.George Hazan
thus manual call of destroy() might be removed from: - class destructors; - Unload() plugin's functions (for global data); - local (auto) variables in functions finalizations git-svn-id: http://svn.miranda-ng.org/main/trunk@7467 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
2014-01-01copyright update for year 2014George Hazan
git-svn-id: http://svn.miranda-ng.org/main/trunk@7438 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
2013-12-14- another atavism (DBVTF_DENYUNICODE) removed;George Hazan
- default text formatter for EVENTTYPE_AUTHREQUEST added git-svn-id: http://svn.miranda-ng.org/main/trunk@7208 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
2013-09-27attempt to wipe out STL from extra iconsGeorge Hazan
git-svn-id: http://svn.miranda-ng.org/main/trunk@6252 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
2013-09-21mir_ptr<> constructor declared as explicit to evade problemsGeorge Hazan
git-svn-id: http://svn.miranda-ng.org/main/trunk@6173 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
2013-08-02mir_ptr<> shall be initialized by NULL by defaultGeorge Hazan
git-svn-id: http://svn.miranda-ng.org/main/trunk@5554 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
2013-05-16words of wisdom were well receivedGeorge Hazan
now the shortened types are called ptrA, ptrT & ptrW respectively git-svn-id: http://svn.miranda-ng.org/main/trunk@4682 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
2013-05-16shortened typedefs for string buffers:George Hazan
MCBuf -> mir_ptr<char> MTBuf -> mir_ptr<TCHAR> MWBuf -> mir_ptr<WCHAR> git-svn-id: http://svn.miranda-ng.org/main/trunk@4680 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
2013-02-28compilation fixesGeorge Hazan
git-svn-id: http://svn.miranda-ng.org/main/trunk@3809 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
2013-02-28new template, VARST, to hold the result of calling Utils_ReplaceVarsT()George Hazan
git-svn-id: http://svn.miranda-ng.org/main/trunk@3806 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
2012-11-15include: tabs over spacesGeorge Hazan
git-svn-id: http://svn.miranda-ng.org/main/trunk@2317 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
2012-07-29fix for the double object deletion in MSNGeorge Hazan
git-svn-id: http://svn.miranda-ng.org/main/trunk@1242 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
2012-07-21controllable critical section lockerGeorge Hazan
git-svn-id: http://svn.miranda-ng.org/main/trunk@1088 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
2012-07-20- db3x_mmap is completely moved to a class;George Hazan
- the old nightmare in the core "How to detect a db plugin and load it" is eliminated forever; - databases are the usual plugins now (loadable via Load) - dynamic DATABASELINK registration git-svn-id: http://svn.miranda-ng.org/main/trunk@1082 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
2012-07-05- first of the /Core standard plugins;George Hazan
- code cleaning git-svn-id: http://svn.miranda-ng.org/main/trunk@778 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c