Remove six dll_ variables from the module exports table

The removed variables are:

	dll_functions
	dll_numeric
	dll_commands
	dll_variable
	dll_ctcp
	dll_window

These are not actually directly used by any modules, and hiding them allows us to more easily
change their implementation later.
This commit is contained in:
Kevin Easton
2017-11-06 17:14:12 +11:00
parent a58078de7e
commit 50999b3d5b
4 changed files with 4 additions and 25 deletions

View File

@@ -1,5 +1,8 @@
[Changes 1.2.2]
* Remove dll_functions, dll_numeric, dll_commands, dll_variable, dll_ctcp,
and dll_window variables from the module exports table. (caf)
* Add save_dllvar() function exported to modules, and switch cavlink
and nap plugins to use it. (caf)