Blame clients/uil/UilCmdDef.h

Packit b099d7
/* 
Packit b099d7
 * Motif
Packit b099d7
 *
Packit b099d7
 * Copyright (c) 1987-2012, The Open Group. All rights reserved.
Packit b099d7
 *
Packit b099d7
 * These libraries and programs are free software; you can
Packit b099d7
 * redistribute them and/or modify them under the terms of the GNU
Packit b099d7
 * Lesser General Public License as published by the Free Software
Packit b099d7
 * Foundation; either version 2 of the License, or (at your option)
Packit b099d7
 * any later version.
Packit b099d7
 *
Packit b099d7
 * These libraries and programs are distributed in the hope that
Packit b099d7
 * they will be useful, but WITHOUT ANY WARRANTY; without even the
Packit b099d7
 * implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
Packit b099d7
 * PURPOSE. See the GNU Lesser General Public License for more
Packit b099d7
 * details.
Packit b099d7
 *
Packit b099d7
 * You should have received a copy of the GNU Lesser General Public
Packit b099d7
 * License along with these librararies and programs; if not, write
Packit b099d7
 * to the Free Software Foundation, Inc., 51 Franklin Street, Fifth
Packit b099d7
 * Floor, Boston, MA 02110-1301 USA
Packit b099d7
*/ 
Packit b099d7
/* 
Packit b099d7
 * HISTORY
Packit b099d7
*/ 
Packit b099d7
/*   $XConsortium: UilCmdDef.h /main/10 1995/07/14 09:32:45 drk $ */
Packit b099d7
Packit b099d7
/*
Packit b099d7
*  (c) Copyright 1989, 1990, DIGITAL EQUIPMENT CORPORATION, MAYNARD, MASS. */
Packit b099d7
Packit b099d7
/*
Packit b099d7
**++
Packit b099d7
**  FACILITY:
Packit b099d7
**
Packit b099d7
**      User Interface Language Compiler (UIL)
Packit b099d7
**
Packit b099d7
**  ABSTRACT:
Packit b099d7
**
Packit b099d7
**      This include file defines the interface to the UIL command line
Packit b099d7
**	processing.
Packit b099d7
**
Packit b099d7
**--
Packit b099d7
**/
Packit b099d7
Packit b099d7
#ifndef UilCmdDef_h
Packit b099d7
#define UilCmdDef_h
Packit b099d7
Packit b099d7
/*
Packit b099d7
**
Packit b099d7
**  INCLUDE FILES
Packit b099d7
**
Packit b099d7
**/
Packit b099d7
Packit b099d7
Packit b099d7
typedef struct  
Packit b099d7
{
Packit b099d7
    char	    *ac_source_file;
Packit b099d7
    char	    *ac_resource_file;
Packit b099d7
    char	    *ac_listing_file;
Packit b099d7
    unsigned int    include_dir_count;	    /* number of directories in	    */
Packit b099d7
					    /* ac_include_dir array	    */
Packit b099d7
    char	    **ac_include_dir;    /* pointer to array of	    */
Packit b099d7
					    /* directories to search for    */
Packit b099d7
					    /* includes in		    */
Packit b099d7
    unsigned	    v_listing_file: 1;
Packit b099d7
    unsigned	    v_resource_file: 1;
Packit b099d7
    unsigned	    v_show_machine_code: 1;
Packit b099d7
    unsigned	    v_report_info_msg: 1;
Packit b099d7
    unsigned	    v_report_warn_msg: 1;
Packit b099d7
    unsigned	    v_parse_tree: 1;	    /* generate parse tree	    */
Packit b099d7
    unsigned        v_issue_summary: 1;
Packit b099d7
    
Packit b099d7
    unsigned int    status_update_delay;    /* Number of times a status	    */
Packit b099d7
					    /* point is passed before	    */
Packit b099d7
					    /* calling statusCB routine	    */
Packit b099d7
					    /* 0 means called every time    */
Packit b099d7
    Uil_continue_type	(*message_cb)();
Packit b099d7
    char		*message_data;
Packit b099d7
    Uil_continue_type	(*status_cb)();
Packit b099d7
    char		*status_data;
Packit b099d7
    unsigned	    	v_use_setlocale: 1;    /* Allow localized strings */
Packit b099d7
    char		*ac_database;
Packit b099d7
    unsigned 		v_database: 1;
Packit b099d7
} cmd_command_line_type;
Packit b099d7
Packit b099d7
#endif /* UilCmdDef_h */
Packit b099d7
/* DON'T ADD STUFF AFTER THIS #endif */