home *** CD-ROM | disk | FTP | other *** search
/ CD Direkt 1995 #6 / CDD_6_95.ISO / cdd / winanw / hawin / mcimail.c < prev    next >
C/C++ Source or Header  |  1994-12-07  |  2KB  |  62 lines

  1. /* This program mcimail.c created by Hilgraeve and assigned to the mcimail session*/
  2. /* runs an automated logon script for connecting to MCI Mail.                    */
  3.  
  4. /*    $Revision: 1.1 $  */
  5. /*    $Date: 1994/11/08 11:59:41 $  */
  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. #include <defines.h>
  10.  
  11. void main()
  12.     {
  13.     /* Declare variables */
  14.     long ScriptHandle;
  15.     int ReturnValue;
  16.     char Buffer[128];
  17.  
  18.     /* Initialize variables */
  19.     ReturnValue = 0;
  20.     ScriptHandle = 0;
  21.  
  22.     /* Establish a link between this script program and HyperACCESS */
  23.     ScriptHandle = haInitialize(0,0,0,0);
  24.  
  25.     /* Exit if intialization of link with HyperACCESS failed */
  26.     if (ScriptHandle == 0) exit();
  27.  
  28.     ReturnValue = -1;
  29.     /* Wait for the user name prompt */
  30.     while (ReturnValue < 0)
  31.         {
  32.         ReturnValue = haWaitForString(ScriptHandle, 1, " name: ", 3000L);
  33.         if (ReturnValue == HA_ERR_CONECTION_LOST)
  34.             break;
  35.         if (ReturnValue < 0)
  36.             haTypeText(ScriptHandle, 0, "\r");
  37.         }
  38.  
  39.     /* Get User Name value from Runtime values dialog box */
  40.     if (ReturnValue >= 0)
  41.         ReturnValue = haGetRuntimeValue(ScriptHandle, 1, 1, 128, Buffer);
  42.  
  43.     /* Type the value */
  44.     if (ReturnValue >= 0)
  45.         ReturnValue = haTypeText(ScriptHandle, 0, Buffer);
  46.  
  47.     /* Wait for a prompt */
  48.     if (ReturnValue >= 0)
  49.         ReturnValue = haWaitForString(ScriptHandle, 1, "sword: ", 32000L);
  50.  
  51.     /* Get Password value from Runtime Values dialog box */
  52.     if (ReturnValue >= 0)
  53.         ReturnValue = haGetRuntimeValue(ScriptHandle, 3, 1, 128, Buffer);
  54.  
  55.     /* Type the value */
  56.     if (ReturnValue >= 0)
  57.         ReturnValue = haTypeText(ScriptHandle, 0, Buffer);
  58.  
  59.     /* Terminate link between HyperACCESS and script program */
  60.     haTerminate(ScriptHandle, 0);
  61.     }
  62.