EPI_setYesFlag


The EPI_setYesFlag routine sets the Eagle IFYESNO indicator flag.


void EPI_setYEsFlag(        HMODULE     hEagle,         // Eagle handle     int         flag            // The flag value );    

Parameters


hEagle

value of the Eagle handle, which can be obtained through the EPI_getEagleHandle function.


flag

the flag value.  Values are 1 (yes) or 0 (no).

Return Value

None.

See Also

EPI_getEagleHandle

Example


HMODULE    he;     he = EPI_getEagleHandle();     EPI_setYesFlag( he, 0 );