diff options
Diffstat (limited to 'plugins/SmileyAdd/src/smileyroutines.h')
-rw-r--r-- | plugins/SmileyAdd/src/smileyroutines.h | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/plugins/SmileyAdd/src/smileyroutines.h b/plugins/SmileyAdd/src/smileyroutines.h index 3b0a08d60e..93b00cb08e 100644 --- a/plugins/SmileyAdd/src/smileyroutines.h +++ b/plugins/SmileyAdd/src/smileyroutines.h @@ -23,8 +23,8 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. typedef struct ReplaceSmileyType_tag
{
CHARRANGE loc;
- SmileyType* sml;
- SmileyCType* smlc;
+ SmileyType *sml;
+ SmileyCType *smlc;
bool ldspace;
bool trspace;
} ReplaceSmileyType;
@@ -34,10 +34,10 @@ typedef SMOBJLIST<ReplaceSmileyType> SmileysQueueType; -void LookupAllSmileys(SmileyPackType* smileyPack, SmileyPackCType* smileyCPack, const TCHAR* lpstrText, SmileysQueueType& smllist, const 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 TCHAR* str, unsigned& first, unsigned& size, SmileyType** index);
-SmileyType* FindButtonSmiley(SmileyPackType* smp);
+void LookupAllSmileys(SmileyPackType *smileyPack, SmileyPackCType *smileyCPack, const TCHAR *lpstrText, SmileysQueueType &smllist, const 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 TCHAR *str, unsigned &first, unsigned &size, SmileyType **index);
+SmileyType* FindButtonSmiley(SmileyPackType *smp);
#endif
|