/*---------------------------------------------------------* | Author: Maurizio Loreti, aka MLO or I3NOO. | | Address: University of Padova - Department of Physics | | Via F. Marzolo, 8 - 35131 PADOVA - Italy | | Phone: (39)(49) 844-313 FAX: (39)(49) 844-245 | | E-Mail: LORETI at IPDINFN (BITNET); or VAXFPD::LORETI | | (DECnet) - VAXFPD is node 38.257 i.e. 39169; or | | LORETI@PADOVA.INFN.IT (INTERNET). | | Home: Via G. Donizetti 6 - 35010 CADONEGHE (PD) - Italy | *---------------------------------------------------------*/ static char fr_Title[] = "File(s) to print:"; /* Title */ static char target[TOT_MAX]; /* Complete file name */ /*----------------------------------------------* | Constants for the asl.library file requester | *----------------------------------------------*/ #if defined(ASL) | defined(BOTH) #define FR_TOP 20 /* Position and size */ #define FR_LEFT 20 #define FR_WIDTH 300 #define FR_HEIGHT 170 static struct TagItem FilReqTags[] = { /* Tags (file requester) */ ASL_TopEdge, FR_TOP, ASL_LeftEdge, FR_LEFT, ASL_Width, FR_WIDTH, ASL_Height, FR_HEIGHT, ASL_Hail, (ULONG) fr_Title, ASL_FuncFlags, (FILF_MULTISELECT | FILF_PATGAD), TAG_DONE }; static struct TagItem FilReqTags1[] = { /* Tags for AslRequest() */ ASL_File, 0, TAG_DONE }; #endif /*----------------------------------------------* | Constants for the req.library file requester | *----------------------------------------------*/ #if defined(REQ) | defined(BOTH) static struct ESStructure *pESS; /* 'Extended selection' pointer */ static char fileName[FIL_MAX]; /* File name */ static char dirName[DIR_MAX] = ""; /* Directory name */ #endif