diff options
author | George Hazan <george.hazan@gmail.com> | 2023-10-24 16:42:00 +0300 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2023-10-24 16:42:00 +0300 |
commit | 46987b670e11cfa512627ecae3ef701798c10f3d (patch) | |
tree | 1ea672b4ee708a14306ce28b2a985e1cba9827a5 /plugins/SmileyAdd/src/smileyroutines.h | |
parent | e174cbf543407b1261f527fb1c0f76a62a4bd947 (diff) |
SmileyAdd:
- allows now to display repetitive smileys even if they go one after another without spaces;
- much less resource consumption, much faster execution;
- code cleaning
- version bump;
Diffstat (limited to 'plugins/SmileyAdd/src/smileyroutines.h')
-rw-r--r-- | plugins/SmileyAdd/src/smileyroutines.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/plugins/SmileyAdd/src/smileyroutines.h b/plugins/SmileyAdd/src/smileyroutines.h index 3fa846c054..4fcce07761 100644 --- a/plugins/SmileyAdd/src/smileyroutines.h +++ b/plugins/SmileyAdd/src/smileyroutines.h @@ -32,10 +32,9 @@ struct ReplaceSmileyType // Queue to store smileys found
typedef SMOBJLIST<ReplaceSmileyType> SmileysQueueType;
-void LookupAllSmileys(SmileyPackType *smileyPack, SmileyPackCType *smileyCPack, const wchar_t *lpstrText, SmileysQueueType &smllist, const bool firstOnly);
+void LookupAllSmileys(SmileyPackType *smileyPack, SmileyPackCType *smileyCPack, const wchar_t *lpstrText, SmileysQueueType &smllist, bool firstOnly);
void ReplaceSmileys(HWND hwnd, SmileyPackType *smp, SmileyPackCType *smcp, const CHARRANGE &sel, bool useHidden, bool ignoreLast, bool unFreeze, bool fireView = 0);
void ReplaceSmileysWithText(HWND hwnd, CHARRANGE &sel, bool keepFrozen);
-void FindSmileyInText(SmileyPackType *smp, const wchar_t *str, unsigned &first, unsigned &size, SmileyType **index);
SmileyType* FindButtonSmiley(SmileyPackType *smp);
#endif
|