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

  1. /* This program, ssrecord.c, created by Hilgraeve and assigned to the Record */
  2. /* button, connects to a session (if not connected), then records logon. */
  3.  
  4. /* $Revision: 1.1 $ */
  5. /* $Date: 1994/11/08 11:59:44 $ */
  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 HyperACCESS */
  22.     ScriptHandle = haInitialize(0,0,0,0);
  23.  
  24.     /* Exit if intialization of link with HyperACCESS failed */
  25.     if (ScriptHandle == 0) exit();
  26.  
  27.     /* Check to see is session is connected */
  28.     ReturnValue = haGetConnectionStatus(ScriptHandle);
  29.  
  30.     /* If connected, same as selecting Automation from menu bar, the Record from Automation menu */
  31.     if (ReturnValue != 2)
  32.         ReturnValue = haMenuString(ScriptHandle, "AC");
  33.     else
  34.         /* If not connected, connect to session */
  35.         ReturnValue = haConnectSession(ScriptHandle, 1);
  36.  
  37.     /* Terminate link between HyperACCESS and script program */
  38.     haTerminate(ScriptHandle, 0);
  39.     }
  40.  
  41.  
  42.