File tree 1 file changed +8
-3
lines changed
1 file changed +8
-3
lines changed Original file line number Diff line number Diff line change @@ -1204,15 +1204,20 @@ RL_API REBCNT RL_Decode_UTF8_Char(const REBYTE *str, REBCNT *len)
1204
1204
**
1205
1205
*/ RL_API REBCNT RL_Register_Handle_Spec (REBYTE * name , REBHSP * spec )
1206
1206
/*
1207
- ** Stores handle's specification (required data size and optional free callback.
1207
+ ** Stores handle's specification (required data size and optional callbacks).
1208
+ ** It's an extended version of old RL_Register_Handle function.
1208
1209
**
1209
1210
** Returns:
1210
1211
** symbol id of the word (whether found or new)
1211
1212
** or NOT_FOUND if handle with give ID is already registered.
1212
1213
** Arguments:
1213
1214
** name - handle's name as a c-string (length is being detected)
1214
- ** size - size of needed memory to handle
1215
- ** free_func - custom function to be called when handle is released
1215
+ ** spec - Handle's specification:
1216
+ ** * size of needed memory to handle,
1217
+ ** * reserved flags
1218
+ ** * release function
1219
+ ** * get path accessor
1220
+ ** * set path accessor
1216
1221
**
1217
1222
***********************************************************************/
1218
1223
{
You can’t perform that action at this time.
0 commit comments