739088af9f
- aggiornamento versione.
66 lines
2.2 KiB
C++
66 lines
2.2 KiB
C++
/*****************************************************************************/
|
|
/* */
|
|
/* Copyright (C) 2002--2025 M. Held */
|
|
/* */
|
|
/* This code is not in the public domain. All rights reserved! Please make */
|
|
/* sure to read the full copyright statement contained in "README.txt" or in */
|
|
/* the "main" file of this code, such as "main.cc". */
|
|
/* */
|
|
/*****************************************************************************/
|
|
/* */
|
|
/* Written by: Martin Held */
|
|
/* */
|
|
/* E-Mail: held@cs.sbg.ac.at */
|
|
/* Fax Mail: (+43 662) 8044-611 */
|
|
/* Voice Mail: (+43 662) 8044-6304 */
|
|
/* Snail Mail: Martin Held */
|
|
/* FB Informatik */
|
|
/* Universitaet Salzburg */
|
|
/* A-5020 Salzburg, Austria */
|
|
/* */
|
|
/*****************************************************************************/
|
|
|
|
#include "ext_appl_defs.h"
|
|
|
|
#ifdef EXT_APPL_PNTS
|
|
const eap_type eap_NIL = {-1, -1};
|
|
#else
|
|
#define eap_NIL -1
|
|
#endif
|
|
|
|
#ifdef EXT_APPL_SITES
|
|
const eas_type eas_NIL = {- 1, -1};
|
|
#else
|
|
#define eas_NIL -1
|
|
#endif
|
|
|
|
#ifdef EXT_APPL_VD
|
|
const ean_type ean_NIL = -1;
|
|
const eae_type eae_NIL = -1;
|
|
#else
|
|
#define ean_NIL -1
|
|
#define eae_NIL -1
|
|
#endif
|
|
|
|
#ifdef EXT_APPL_OFF
|
|
const eao_type eao_NIL = -1;
|
|
#else
|
|
#define eao_NIL -1
|
|
#endif
|
|
|
|
#ifdef EXT_APPL_WMAT
|
|
const eam_type eam_NIL = -1;
|
|
#else
|
|
#define eam_NIL -1
|
|
#endif
|
|
|
|
#ifdef EXT_APPL_PATH
|
|
const eao_type eah_NIL = -1;
|
|
#else
|
|
#define eah_NIL -1
|
|
#endif
|
|
|
|
|
|
|
|
|