coan 4.2.4
|
00001 #ifndef LINE_SELECT_H 00002 #define LINE_SELECT_H 00003 00004 /*************************************************************************** 00005 * Copyright (C) 2007-2011 Mike Kinghan, imk@strudl.org * 00006 * All rights reserved. * 00007 * * 00008 * Redistribution and use in source and binary forms, with or without * 00009 * modification, are permitted provided that the following conditions * 00010 * are met: * 00011 * * 00012 * Redistributions of source code must retain the above copyright * 00013 * notice, this list of conditions and the following disclaimer. * 00014 * * 00015 * Redistributions in binary form must reproduce the above copyright * 00016 * notice, this list of conditions and the following disclaimer in the * 00017 * documentation and/or other materials provided with the distribution. * 00018 * * 00019 * Neither the name of Symbian Software Ltd. nor the names of its * 00020 * contributors may be used to endorse or promote products derived from * 00021 * this software without specific prior written permission. * 00022 * * 00023 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS * 00024 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT * 00025 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS * 00026 * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE * 00027 * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, * 00028 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, * 00029 * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS * 00030 * OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED * 00031 * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,* 00032 * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF * 00033 * THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH * 00034 * DAMAGE. * 00035 * * 00036 **************************************************************************/ 00037 00038 #include "state_utils.h" 00039 00047 00054 extern bool 00055 eligible_line(int cmd_code, int directive); 00056 00063 extern bool 00064 dropping_line(void); 00065 00070 00073 PUBLIC_STATE_DEF(line_select) 00074 { 00075 bool dropping_line; 00076 } 00077 PUBLIC_STATE_T(line_select); 00078 00079 IMPORT(line_select); 00083 #endif /* EOF */ 00084