diff options
author | George Hazan <ghazan@miranda.im> | 2022-02-27 13:00:50 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2022-02-27 13:00:50 +0300 |
commit | 43dfd39e6ed30820c546cb2aa5b18463e30ebf00 (patch) | |
tree | f4bf89a9d515d5037c67f3d42a347febe07bc14c /src | |
parent | bdf8bfec61c37a4f7f18a7f45523cb9d44706fe7 (diff) |
compilation fix
Diffstat (limited to 'src')
-rw-r--r-- | src/mir_app/src/plugins.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mir_app/src/plugins.h b/src/mir_app/src/plugins.h index 4769f342e4..6b686265ab 100644 --- a/src/mir_app/src/plugins.h +++ b/src/mir_app/src/plugins.h @@ -68,7 +68,7 @@ bool TryLoadPlugin(pluginEntry *p, bool bDynamic); void Plugin_Uninit(pluginEntry *p);
bool Plugin_UnloadDyn(pluginEntry *p);
-typedef BOOL (*SCAN_PLUGINS_CALLBACK) (struct WIN32_FIND_DATA *fd, wchar_t *path, WPARAM wParam, LPARAM lParam);
+typedef BOOL (*SCAN_PLUGINS_CALLBACK) (WIN32_FIND_DATA *fd, wchar_t *path, WPARAM wParam, LPARAM lParam);
void enumPlugins(SCAN_PLUGINS_CALLBACK cb, WPARAM wParam, LPARAM lParam);
struct MuuidReplacement
|