mirror of
https://github.com/HerculesWS/Hercules
synced 2026-08-15 12:23:13 -04:00
Made HPMHooking be commented out by default (no need to have it enabled since hercules is shipped with no other enabled plugins). Signed-off-by: shennetsind <ind@henn.et>
39 lines
1.6 KiB
Text
39 lines
1.6 KiB
Text
//====================================================
|
|
//= _ _ _
|
|
//= | | | | | |
|
|
//= | |_| | ___ _ __ ___ _ _| | ___ ___
|
|
//= | _ |/ _ \ '__/ __| | | | |/ _ \/ __|
|
|
//= | | | | __/ | | (__| |_| | | __/\__ \
|
|
//= \_| |_/\___|_| \___|\__,_|_|\___||___/
|
|
//=
|
|
//= http://hercules.ws/board/
|
|
//====================================================
|
|
//== Topic Discussion ================================
|
|
//== http://hercules.ws/board/topic/549-introducing-hercules-plugin-manager/
|
|
//====================================================
|
|
//== Description =====================================
|
|
//The plugin system allows you to create customized scripts
|
|
//outside of the source. These scripts won't conflict with any
|
|
//future source updates - think of it as a /conf/import/ for the source.
|
|
//====================================================
|
|
|
|
/* --------------- Format ---------------
|
|
After you have listed your plugin(s) in "quotations",
|
|
you need to put in a comma, to separate the plugins.
|
|
-----------------------------------------
|
|
plugins_list: [
|
|
"example",
|
|
"other",
|
|
]
|
|
-----------------------------------------
|
|
Please note that your scripts need to be saved
|
|
in the .c (source code) extension and placed in the /src/plugin/ folder.
|
|
-----------------------------------------
|
|
*/
|
|
plugins_list: [
|
|
/* Enable HPMHooking when plugins in use rely on Hooking */
|
|
//"HPMHooking",
|
|
//"db2sql",
|
|
//"sample",
|
|
//"other",
|
|
]
|