Custom data generator is an external DLL that contains complex data generation procedure.
To access custom generator the user should call $DLL function of the "By pattern" fill method.
The programmer who want to create own generator should:
TCHAR* WINAPI Install(const TCHAR *param)
{
return "Name of the generator";
}
TCHAR* WINAPI GetValue(void *)
{
return "Some value";
}
Important note: you should use different custom generator's DLL for ANSI and Unicode version of the software product.