[<<Previous Entry]
[^^Up^^]
[Next Entry>>]
[Menu]
[About The Guide]
Function SetpcAnywhere - enable/disable pcAnywhere
Syntax void SetpcAnywhere(boolean enabled);
Prototype in doshk.h
Remarks SetpcAnywhere() is used to enable or disable
pcAnywhere, depending on the parameter passed. This
function assumes pcAnywhere is installed.
Return value nothing.
See also ispcAnywhere()
Example #include <doshk.h>
#include <howard.h> /* for TRUE */
main()
{
printf("pcAnywhere is ");
if (ispcAnywhere()) {
SetpcAnywhere(TRUE);
printf("enabled");
} else
printf("not installed");
}
See Also:
ispcAnywhere()
This page created by ng2html v1.05, the Norton guide to HTML conversion utility.
Written by Dave Pearson