fixed amb1023 - register_library had an outdated comment

This commit is contained in:
David Anderson 2007-10-22 19:00:25 +00:00
parent c635638fd1
commit 50bbefa3ba

View File

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