@@ -20,11 +20,11 @@ #ifndef OF_WINDOWS # include # define OF_RTLD_LAZY RTLD_LAZY # define OF_RTLD_NOW RTLD_NOW -typedef void* of_plugin_handle_t; +typedef void *of_plugin_handle_t; #else # include # define OF_RTLD_LAZY 0 # define OF_RTLD_NOW 0 typedef HMODULE of_plugin_handle_t; @@ -46,19 +46,19 @@ * @brief Loads a plugin from a file. * * @param path Path to the plugin file. The suffix is appended automatically. * @return The loaded plugin */ -+ (OF_KINDOF(OFPlugin*))pluginFromFile: (OFString*)path; ++ (OF_KINDOF(OFPlugin *))pluginFromFile: (OFString *)path; @end #ifdef __cplusplus extern "C" { #endif extern of_plugin_handle_t of_dlopen(OFString *path, int flags); -extern void* of_dlsym(of_plugin_handle_t handle, const char *symbol); +extern void *of_dlsym(of_plugin_handle_t handle, const char *symbol); extern void of_dlclose(of_plugin_handle_t handle); #ifdef __cplusplus } #endif OF_ASSUME_NONNULL_END