-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added missing mgver.h thanks to Rota66 for [pointing it out](#6).
- Loading branch information
Showing
1 changed file
with
62 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,62 @@ | ||
/*---------------------------------------------------------------------------- | ||
MINIGUI - Harbour Win32 GUI library source code | ||
Copyright 2002-2010 Roberto Lopez <[email protected]> | ||
http://harbourminigui.googlepages.com/ | ||
This program is free software; you can redistribute it and/or modify it under | ||
the terms of the GNU General Public License as published by the Free Software | ||
Foundation; either version 2 of the License, or (at your option) any later | ||
version. | ||
This program is distributed in the hope that it will be useful, but WITHOUT | ||
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS | ||
FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. | ||
You should have received a copy of the GNU General Public License along with | ||
this software; see the file COPYING. If not, write to the Free Software | ||
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA (or | ||
visit the web site http://www.gnu.org/). | ||
As a special exception, you have permission for additional uses of the text | ||
contained in this release of Harbour Minigui. | ||
The exception is that, if you link the Harbour Minigui library with other | ||
files to produce an executable, this does not by itself cause the resulting | ||
executable to be covered by the GNU General Public License. | ||
Your use of that executable is in no way restricted on account of linking the | ||
Harbour-Minigui library code into it. | ||
Parts of this project are based upon: | ||
"Harbour GUI framework for Win32" | ||
Copyright 2001 Alexander S.Kresin <[email protected]> | ||
Copyright 2001 Antonio Linares <[email protected]> | ||
www - http://harbour-project.org | ||
"Harbour Project" | ||
Copyright 1999-2017, http://harbour-project.org/ | ||
"WHAT32" | ||
Copyright 2002 AJ Wos <[email protected]> | ||
"HWGUI" | ||
Copyright 2001-2015 Alexander S.Kresin <[email protected]> | ||
---------------------------------------------------------------------------*/ | ||
|
||
#ifndef MG_VER_H_ | ||
#define MG_VER_H_ | ||
|
||
#ifdef __HMG__ | ||
#undef __HMG__ | ||
#endif | ||
|
||
#define MG_VER_MAJOR 2 /* Major version number */ | ||
#define MG_VER_MINOR 8 /* Minor version number */ | ||
#define MG_VER_RELEASE 1 /* Release number */ | ||
#define MG_VER_STATUS "stable" /* Build status (all lowercase) */ | ||
|
||
#define __HMG__ 0x020801 /* Three bytes: Major + Minor + Build. */ | ||
|
||
#endif /* MG_VER_H_ */ |