diff options
author | George Hazan <george.hazan@gmail.com> | 2023-09-05 16:10:48 +0300 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2023-09-05 16:10:48 +0300 |
commit | 90e682bbe7b3be96b741fe32ec11cc26f58ab5a2 (patch) | |
tree | 2e8a9d651d6cbc26132d7e49414f7a60a2d65211 /plugins/NewStory/src/utils.h | |
parent | 64c2fb8c4329d430a4894f154b47269693e31102 (diff) |
NewStory: event quoting
Diffstat (limited to 'plugins/NewStory/src/utils.h')
-rw-r--r-- | plugins/NewStory/src/utils.h | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/plugins/NewStory/src/utils.h b/plugins/NewStory/src/utils.h index 9e9c74b55b..91f8fa92af 100644 --- a/plugins/NewStory/src/utils.h +++ b/plugins/NewStory/src/utils.h @@ -1,7 +1,10 @@ +struct ItemData; +struct NewstoryListData; + uint32_t toggleBit(uint32_t dw, uint32_t bit); bool CheckFilter(wchar_t *buf, wchar_t *filter); -HMENU NSMenu_Build(struct ItemData *item); -bool NSMenu_Process(int iCommand, struct NewstoryListData *data); +HMENU NSMenu_Build(NewstoryListData *data, ItemData *item); +bool NSMenu_Process(int iCommand, NewstoryListData *data); void RemoveBbcodes(wchar_t *pwszText); |