diff --git a/plugins/include/amxmodx.inc b/plugins/include/amxmodx.inc index c3b217dd..bc5ff4ad 100755 --- a/plugins/include/amxmodx.inc +++ b/plugins/include/amxmodx.inc @@ -753,9 +753,12 @@ forward plugin_natives(); */ native register_native(const name[], const handler[], style=0); -/* Registers a library. You can put #pragma library in your include files, - * and plugins that use your include without loading your plugin will get a nice - * error message. +/* Registers a library. To mark a library as required, place the following + * in your include file: + * #pragma reqlib + * #if !defined AMXMODX_NOAUTOLOAD + * #pragma loadlib + * #endif */ native register_library(const library[]);