1 SUB SMG_UNPASTE(LONG Vir_disp_num) !---------------------------------------------------------------& ! & ! SMG_UNPASTE & ! & ! Creation Date: 3-July-1985 & ! Author: Ken Messer & ! Purpose: Unpaste a virtual display & ! & ! Modification history & ! & ! Date Description of change(s) & ! & !---------------------------------------------------------------& ! & ! Copyright (c) 1985 - Ken Messer, Allied Electronics, Inc., & ! 401 E. 8th St., Ft. Worth, TX 76102 & ! & ! This software may be copied and distributed freely to anyone & ! for non-commerical use provided that this copyright notice is & ! included. & !---------------------------------------------------------------& OPTION TYPE = INTEGER, SIZE = INTEGER LONG %include "SMG$LIBRARY:SMG.DFN" DECLARE LONG Return_status EXTERNAL LONG CONSTANT SS$_Normal EXTERNAL LONG FUNCTION SMG$Unpaste_virtual_display EXTERNAL STRING FUNCTION Get_Error_Message(LONG) !---------------------------------------------------------------& ! & ! M a i n P r o g r a m L o g i c & ! & !---------------------------------------------------------------& Return_status = SMG$Unpaste_virtual_display(Display_id(Vir_disp_num),& Current_pasteboard_id) IF Return_status AND SS$_Normal = 0 THEN PRINT Get_Error_Message(Return_status) STOP END IF SUBEXIT END SUB