home *** CD-ROM | disk | FTP | other *** search
/ NetComm Communications 5 / NetComm.iso / resource / netcomm / wcomm / disk3 / ssrecord.c_ / ssrecord.bin
Encoding:
Text File  |  1994-10-24  |  1.3 KB  |  42 lines

  1. /* This program, ssrecord.c, created by Delrina and assigned to the Record */
  2. /* button, connects to a session (if not connected), then records logon. */
  3.  
  4. /* $Revision:   1.0  $ */
  5. /* $Date:   26 Apr 1993 15:21:24  $ */
  6.  
  7. /* Define main function, which is always the starting point of C programs. */
  8. /* (The term "void" indicates that the function returns no value.) */
  9. void main()
  10.     {
  11.     /* Declare variables */
  12.     long ScriptHandle;
  13.     int ReturnValue;
  14.     char Buffer[256];
  15.  
  16.     /* Initialize variables */
  17.     ReturnValue = 0;
  18.     ScriptHandle = 0;
  19.     memset(Buffer, 0, 256);
  20.  
  21.     /* Establish a link between this script program and Delrina WinComm PRO */
  22.     ScriptHandle = dcInitialize(0,0,0,0);
  23.  
  24.     /* Exit if intialization of link with Delrina WinComm PRO failed */
  25.     if (ScriptHandle == 0) exit();
  26.  
  27.     /* Check to see is session is connected */
  28.     ReturnValue = dcGetConnectionStatus(ScriptHandle);
  29.  
  30.     /* If connected, same as selecting Script from menu bar, the Record from Script menu */
  31.     if (ReturnValue != 2)
  32.         ReturnValue = dcMenuString(ScriptHandle, "CC");
  33.     else
  34.         /* If not connected, connect to session */
  35.         ReturnValue = dcConnectSession(ScriptHandle, 1);
  36.  
  37.     /* Terminate link between Delrina WinComm PRO and script program */
  38.     dcTerminate(ScriptHandle, 0);
  39.     }
  40.  
  41.  
  42.