|
Custom data generator is an external DLL that contains complex
data generation procedure.
There are two type of custom generators: provides by the software
vendor and user defined.
The user can select predefined generator from drop down menu. To
select user defined generator the user must specify complete path
to DLL.
How to create custom data generator?
The programmer who want to create own generator should:
- Create standard windows DLL
- Build two functions Install and GetValue. See below for
details.
- Export these functions from DLL.
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.
|