﻿id	summary	reporter	owner	description	type	status	priority	milestone	component	version	severity	resolution	keywords	cc
1051	add extra argument to Tol_HciWriter	Jorge	Jorge	"The ""Hci Writer"" in TOL is a global function of type:

{{{
typedef void (*BHciWriter)(const BText&);
}}}

In order to provide a context information to a global function of this type it is proposed to be:

{{{
#!C
typedef void (*BHciWriter)(const BText&, void *context);
}}}

the extra argument context must be provided in the invocation to {{{PutHciWriter}}}

{{{
#!C
void   PutHciWriter(BHciWriter h, void *context = NULL);
}}}

When the HciWriter is invoked it will receive the context argument it was registered with.
 "	enhancement	closed	highest	Mantainance	Kernel	head	blocker	fixed	HciWriter	hcarralero@…
