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

  1. /* This program delphi.c created by Hilgraeve and assigned to the Delphi session */
  2. /* runs an automated logon script for connecting to Delphi.                      */
  3.  
  4. /*    $Revision: 1.1 $               */
  5. /*    $Date: 1994/11/08 11:59:35 $  */
  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[128];
  15.  
  16.     /* Initialize variables */
  17.     ReturnValue = 0;
  18.     ScriptHandle = 0;
  19.  
  20.     /* Establish a link between this script program and HyperACCESS */
  21.     ScriptHandle = haInitialize(0,0,0,0);
  22.  
  23.     /* Exit if intialization of link with HyperACCESS failed */
  24.     if (ScriptHandle == 0) exit();
  25.  
  26.     /* Type a '@' then <enter> */
  27.     if (ReturnValue >= 0)
  28.         ReturnValue = haTypeText(ScriptHandle, 0, "@");
  29.  
  30.     /* Pause */
  31.     if (ReturnValue >= 0)
  32.         haSleep(ScriptHandle, 1000L);
  33.  
  34.     /* Type a  <enter> */
  35.     if (ReturnValue >= 0)
  36.         ReturnValue = haTypeText(ScriptHandle, 0, "\r");
  37.  
  38.     /* Wait for one of three prompts possible with Tymenet or Telenet */
  39.     if (ReturnValue >= 0)
  40.         ReturnValue = haWaitForPrompt(ScriptHandle, 3, "ERMINAL=\0r name: \0identifier", 300L, 32000L);
  41.  
  42.     /* If Tymenet do this block */
  43.     if (ReturnValue == 0)
  44.         {
  45.         /* Type an <enter> */
  46.         ReturnValue = haTypeText(ScriptHandle, 0, "\r");
  47.  
  48.         /* Wait for a prompt */
  49.         if (ReturnValue >= 0)
  50.             ReturnValue = haWaitForPrompt(ScriptHandle, 1, "\r\n\r\n@", 300L, 32000L);
  51.  
  52.         /* Type text to request Delphi */
  53.         if (ReturnValue >= 0)
  54.             ReturnValue = haTypeText(ScriptHandle, 0, "c delphi\r");
  55.         }
  56.     /* If Telenet do this block */
  57.     else
  58.         {
  59.         /* Type an 'o' */
  60.         ReturnValue = haTypeText(ScriptHandle, 0, "o");
  61.  
  62.         /* Wait for a prompt */
  63.         if (ReturnValue >= 0)
  64.             ReturnValue = haWaitForPrompt(ScriptHandle, 1, "log in: ", 300L, 32000L);
  65.  
  66.         /* Type text requesting Delphi */
  67.         if (ReturnValue >= 0)
  68.             ReturnValue = haTypeText(ScriptHandle, 0, "delphi\r");
  69.         }
  70.  
  71.     /* Wait for a prompt */
  72.     if (ReturnValue >= 0)
  73.         ReturnValue = haWaitForPrompt(ScriptHandle, 1, "ername: ", 300L, 32000L);
  74.  
  75.     /* Get User Name from Runtime Values dialog box */
  76.     if (ReturnValue >= 0)
  77.         ReturnValue = haGetRuntimeValue(ScriptHandle, 1, 1, 128, Buffer);
  78.  
  79.     /* Type the value */
  80.     if (ReturnValue >= 0)
  81.         ReturnValue = haTypeText(ScriptHandle, 0, Buffer);
  82.  
  83.     /* Wait for a prompt */
  84.     if (ReturnValue >= 0)
  85.         ReturnValue = haWaitForPrompt(ScriptHandle, 1, "ssword: ", 300L, 32000L);
  86.  
  87.     /* Get Password value from Runtime Values dialog box */
  88.     if (ReturnValue >= 0)
  89.         ReturnValue = haGetRuntimeValue(ScriptHandle, 3, 1, 128, Buffer);
  90.  
  91.     /* Type the value */
  92.     if (ReturnValue >= 0)
  93.         ReturnValue = haTypeText(ScriptHandle, 0, Buffer);
  94.  
  95.     /* Terminate link between HyperACCESS and script program */
  96.     haTerminate(ScriptHandle, 0);
  97.     }
  98.  
  99.