The EPI_DynainputHandles routine returns the two handles of the two edit controls of the dynainput control.
void EPI_getDynainputHandles ( HMODULE hEagle, // Eagle handle int *whandle1, // Returned first dynainput control int *whandle2 // Returned second dynainput control
);
Parameters
hEagle
value of the Eagle handle, which can be obtained through the EPI_getEagleHandle function.
whandle1
the unique ID of the first edit control of Dynainput.
whandle2
the unique ID of the second edit control of Dynainput.
Return Value
If successful, the EPI returns the two handles of the two edit controls of
the dynainput control.
See Also
Example
HMODULE he; int *whandle1, *whandle2; he = EPI_getEagleHandle(); EPI_getDynainputHandles ( he, &handle1, &handle2 );