home *** CD-ROM | disk | FTP | other *** search
/ NetComm Communications 5 / NetComm.iso / resource / netcomm / wcomm / disk3 / ssprint.c_ / ssprint.bin
Encoding:
Text File  |  1994-10-24  |  886 b   |  27 lines

  1. /* This program, ssprint.c, created by Delrina, prints the selected */
  2. /* session, as if you selected File|Print. */
  3.  
  4. /* $Revision:   1.2  $ */
  5. /* $Date:   06 Apr 1993 17:04:52  $ */
  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.     /* Declares a variable and initializes it to zero. */
  12.     long ScriptHandle = 0;
  13.  
  14.     /* Establish a link between this script program and Delrina WinComm PRO */
  15.     ScriptHandle = dcInitialize(0, 0, 0, 0);
  16.  
  17.     /* Exit if intialization of link with Delrina WinComm PRO failed */
  18.     if (ScriptHandle == 0) exit();
  19.  
  20.     /* Same as selecting File from menu bar, then Print from File menu */
  21.     dcMenuString(ScriptHandle, "FP");
  22.  
  23.     /* Terminate link between Delrina WinComm PRO and script program */
  24.     dcTerminate(ScriptHandle, 0);
  25.     }
  26.  
  27.