Files
harbour-core/harbour/include/hbstrict.ch
Viktor Szakats 67032ce0b0 2013-03-08 13:32 UTC+0100 Viktor Szakats (harbour syenar.net)
* utils/hbmk2/hbmk2.prg
    + added support for posign.exe code signing tool that
      ships with free Pelles C 7.00.0
      It's nice and small standalone tool, with some hopes it
      runs under WINE. It will be automatically used if
      signtool.exe is not found. (beware of using custom -signflag=
      flags because they may by passed to different tools depending
      on actual config)
    + added more details to -sign help

  * contrib/make.hb
    + show warning if 'hbmk2 --hbinfo' process fails for any reason
      (it may help catching hbmk2 and Harbour core bugs)

  * contrib/hbnf/fttext.c
    ! deleted unnecessary MSVC #pragmas
    * deleted embedded and redundant .prg example

  * contrib/hbct/readme.txt
    * Chr() -> hb_BChar()

  * contrib/hbnf/dispc.c
    * formatting

  * contrib/xhb/dbf2txt.c
    ! fixed Dbf2Text() to honor Set( _SET_EOF )

  - doc/inet.txt
    % deleted as a duplicate of doc/en/hbinet.txt

  * contrib/hbct/doc/en/token1.txt
  * contrib/hbct/doc/en/token2.txt
    ! minor correction to prev

  * contrib/hbct/tests/*.prg
    * cleanups

  * contrib/hbct/readme.txt
  * contrib/hbnf/doc/en/fttext.txt
  * contrib/hbnf/doc/en/linked.txt
  * contrib/hbnf/doc/en/origin.txt
  * contrib/hbnf/doc/en/popadder.txt
  * contrib/hbnf/doc/en/xbox.txt
  * contrib/hbpgsql/postgres.c
  * contrib/hbwin/*.c
  * contrib/hbwin/hbwin.ch
  * contrib/hbwin/win_tprn.prg
  * contrib/hbxpp/idlex.c
  * contrib/rddads/ads1.c
  * contrib/rddads/adsmgmnt.c
  * contrib/rddads/doc/en/*.txt
  * contrib/rddsql/readme.txt
  * contrib/xhb/hbcompat.ch
  * contrib/xhb/xhb.hbx
  * contrib/xhb/xhbfunc.c
  * contrib/xhb/xhbhasha.c
  * doc/en/hbinet.txt
  * doc/en/idle.txt
  * doc/en/rdddb.txt
  * doc/en/var.txt
  * extras/gtwvw/docs/gtwvw.txt
  * extras/gtwvw/gtwvwd.c
  * include/hbapicdp.h
  * include/hbapifs.h
  * include/hbapigt.h
  * include/hbmacro.h
  * include/hbstack.h
  * include/hbstrict.ch
  * src/rtl/gtwvt/gtwvt.c
  * src/rtl/*.c
  * src/vm/break.c
  * src/vm/debug.c
    ! fixed typos in comments/docs
    ! deleted/updated outdated information comments/docs
    * casing of Harbour functions in comments/docs
2013-03-08 12:37:56 +00:00

60 lines
2.3 KiB
Plaintext

/*
* $Id$
*/
/*
* Harbour Project source code:
* Header file for stricter syntax checking
*
* Copyright 2011 Viktor Szakats (harbour syenar.net)
* www - http://harbour-project.org
*
* 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, 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.txt. 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, the Harbour Project gives permission for
* additional uses of the text contained in its release of Harbour.
*
* The exception is that, if you link the Harbour libraries 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 library code into it.
*
* This exception does not however invalidate any other reasons why
* the executable file might be covered by the GNU General Public License.
*
* This exception applies only to the code released by the Harbour
* Project under the name Harbour. If you copy code from other
* Harbour Project or Free Software Foundation releases into a copy of
* Harbour, as the General Public License permits, the exception does
* not apply to the code that you add in this way. To avoid misleading
* anyone as to the status of such modified files, you must delete
* this exception notice from them.
*
* If you write modifications of your own for Harbour, it is your choice
* whether to permit this exception to apply to your modifications.
* If you do not wish that, delete this exception notice.
*
*/
#ifndef HB_STRICT_CH_
#define HB_STRICT_CH_
/* force compiler error */
#translate if( <x>, <y>, <z> ) => iif()
#endif /* HB_STRICT_CH_ */