Thu, 08 Aug 2024 21:34:07 -0500
Move the documentation into more appropriate places
This moves the libpurple documentation into the libpurple directory, the Pidgin
documentation into the pidgin directory, and removes the old protocols
documentation remnants.
Testing Done:
Ran the `doc` target and had the turtles check in on things.
Reviewed at https://reviews.imfreedom.org/r/3365/
Title: Core Signals Slug: core-signals ## Core Signals ### Signal List * [core-uri-handler](#uri-handler) ### Signal Details #### uri-handler ```c gboolean user_function(const gchar *proto, const gchar *cmd, GHashTable *params, gpointer user_data); ``` Emitted when handling a registered URI. **Parameters:** **proto** : The protocol of the URI. **cmd** : The 'command' of the URI. **params** : Any key/value parameters from the URI. **user_data** : User data set when the signal handler was connected.