inittab.h 2.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. /*
  2. * CDE - Common Desktop Environment
  3. *
  4. * Copyright (c) 1993-2012, The Open Group. All rights reserved.
  5. *
  6. * These libraries and programs are free software; you can
  7. * redistribute them and/or modify them under the terms of the GNU
  8. * Lesser General Public License as published by the Free Software
  9. * Foundation; either version 2 of the License, or (at your option)
  10. * any later version.
  11. *
  12. * These libraries and programs are distributed in the hope that
  13. * they will be useful, but WITHOUT ANY WARRANTY; without even the
  14. * implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
  15. * PURPOSE. See the GNU Lesser General Public License for more
  16. * details.
  17. *
  18. * You should have received a copy of the GNU Lesser General Public
  19. * License along with these libraries and programs; if not, write
  20. * to the Free Software Foundation, Inc., 51 Franklin Street, Fifth
  21. * Floor, Boston, MA 02110-1301 USA
  22. */
  23. /*
  24. * COMPONENT_NAME: austext
  25. *
  26. * FUNCTIONS: sizeof
  27. *
  28. * ORIGINS: 27,157
  29. *
  30. * (C) COPYRIGHT International Business Machines Corp. 1995, 1996
  31. * All Rights Reserved
  32. * US Government Users Restricted Rights - Use, duplication or
  33. * disclosure restricted by GSA ADP Schedule Contract with IBM Corp.
  34. */
  35. /*----------------------------------------------------------------------------
  36. $XConsortium: inittab.h /main/5 1996/11/25 18:48:42 drk $
  37. inittab.h: db_VISTA header file containing:
  38. - Compatible dictionary file versions
  39. This file is intended to be included in inittab.c only. There are
  40. multiple versions of inittab.c which share this header.
  41. (An #include "vista.h" must precede this include)
  42. (C) Copyright 1987 by Raima Corporation.
  43. ----------------------------------------------------------------------------*/
  44. /* ********************** EDIT HISTORY *******************************
  45. SCR DATE INI DESCRIPTION
  46. ----- --------- --- -----------------------------------------------------
  47. 101 21-Jun-88 RSC Added decl for rn_type and rn_dba for ONE_DB
  48. 08-Aug-88 RTK Moved rn_dba and rn_type to vista.h - needed in rec*.c
  49. 18-Aug-88 RSC Moved rn_type/dba to separate table, add curr_rn_table..
  50. $Log$
  51. * Revision 1.2 1995/10/13 18:36:46 miker
  52. * Changed compat_dbd[] from hardcoded str to dbd_VERSION.
  53. * (dbd_VERSION in vista.h changed bcs expanded max file name length.)
  54. *
  55. */
  56. int db_status = 0;
  57. /* database dictionary tables */
  58. INT largest_page = 0;
  59. char *crloc = NULL;
  60. INT old_size_ft = 0;
  61. INT old_size_fd = 0;
  62. INT old_size_st = 0;
  63. INT old_size_mt = 0;
  64. INT old_size_srt = 0;
  65. INT old_size_kt = 0;
  66. INT old_size_rt = 0;
  67. INT old_no_of_dbs = 0;
  68. /* Compatible dictionary versions */
  69. char *compat_dbd[] = {
  70. dbd_VERSION
  71. };
  72. int size_compat = sizeof(compat_dbd)/sizeof(*compat_dbd);
  73. /* vpp -nOS2 -dUNIX -nBSD -nVANILLA_BSD -nVMS -nMEMLOCK -nWINDOWS -nFAR_ALLOC -f/usr/users/master/config/nonwin inittab.h */