home *** CD-ROM | disk | FTP | other *** search
/ The CDPD Public Domain Collection for CDTV 3 / CDPDIII.bin / pd / programming / gnusmalltalk / mstlib.h < prev    next >
C/C++ Source or Header  |  1992-02-15  |  2KB  |  59 lines

  1. /***********************************************************************
  2.  *
  3.  *    Public interface for main module.
  4.  *
  5.  ***********************************************************************/
  6.  
  7. /***********************************************************************
  8.  *
  9.  * Copyright (C) 1990, 1991, 1992 Free Software Foundation, Inc.
  10.  * Written by Steve Byrne.
  11.  *
  12.  * This file is part of GNU Smalltalk.
  13.  *
  14.  * GNU Smalltalk is free software; you can redistribute it and/or modify it
  15.  * under the terms of the GNU General Public License as published by the Free
  16.  * Software Foundation; either version 1, or (at your option) any later 
  17.  * version.
  18.  * 
  19.  * GNU Smalltalk is distributed in the hope that it will be useful, but WITHOUT
  20.  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or 
  21.  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for
  22.  * more details.
  23.  * 
  24.  * You should have received a copy of the GNU General Public License along with
  25.  * GNU Smalltalk; see the file COPYING.  If not, write to the Free Software
  26.  * Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.  
  27.  *
  28.  ***********************************************************************/
  29.  
  30. /*
  31.  *    Change Log
  32.  * ============================================================================
  33.  * Author      Date       Change 
  34.  * sbb          1 Jan 92      Renamed from mstmain.h
  35.  *
  36.  * sbb         14 Sep 91      Added edit version support.
  37.  *
  38.  * sbb          2 Oct 90      findImageFile was changed to return Boolean.
  39.  *
  40.  * sbyrne     4 Mar 89      Created.
  41.  *
  42.  */
  43.  
  44. #ifndef __MSTLIB__
  45. #define __MSTLIB__
  46.  
  47. #ifndef __MST__
  48. #include "mst.h"
  49. #endif
  50.  
  51. /* string which represents the current version of Smalltalk */
  52. extern char        versionString[50];
  53.  
  54. extern Boolean        smalltalkInitialized;
  55.  
  56. extern Boolean        findImageFile();
  57.  
  58. #endif /* __MSTLIB__ */
  59.