+ doc/en
- doc/en-EN
- contrib/hbgt/doc/en-EN
+ contrib/hbgt/doc/en
- contrib/hbziparc/doc/en-EN
+ contrib/hbziparc/doc/en
- contrib/rddads/doc/en-EN
+ contrib/rddads/doc/en
- contrib/hbgd/doc/en-EN
+ contrib/hbgd/doc/en
- contrib/hbmisc/doc/en-EN
+ contrib/hbmisc/doc/en
- contrib/hbbtree/doc/en-EN
+ contrib/hbbtree/doc/en
- examples/hbdoc/examples/core_en
+ examples/hbdoc/examples/en
- examples/hbdoc/examples/core_es
+ examples/hbdoc/examples/es
* Renamed to use IETF complient language ID.
- examples/hbdoc/examples/hbmisc
- Deleted.
* utils/hbmk2/hbmk2.pt_BR.po
* utils/hbmk2/hbmk2.hu_HU.po
* utils/hbmk2/hbmk2.prg
! Fixed to not use "en-EN" language code, but plain "en".
* examples/hbdoc2/hbdoc2.prg
* "en-en" -> "en"
86 lines
2.3 KiB
Plaintext
86 lines
2.3 KiB
Plaintext
/*
|
|
* $Id$
|
|
*/
|
|
|
|
/* $DOC$
|
|
* $TEMPLATE$
|
|
* Document
|
|
* $NAME$
|
|
* Macro compiler
|
|
* $CATEGORY$
|
|
* Document
|
|
* $SUBCATEGORY$
|
|
* Compiler
|
|
* $ONELINER$
|
|
* Macro compiler
|
|
* $DESCRIPTION$
|
|
* <b>Invoking the macro compiler: </b> </par>
|
|
* ============================== </par>
|
|
*
|
|
* &variable </par>
|
|
* or </par>
|
|
* &( expression ) </par>
|
|
* or </par>
|
|
* &variable.text </par>
|
|
* $END$
|
|
*/
|
|
|
|
/* $DOC$
|
|
* $TEMPLATE$
|
|
* Function
|
|
* $NAME$
|
|
* HB_SETMACRO()
|
|
* $CATEGORY$
|
|
* API
|
|
* $SUBCATEGORY$
|
|
* Macro
|
|
* $ONELINER$
|
|
* Enable/disable the macro compiler runtime features.
|
|
* $SYNTAX$
|
|
* HB_SETMACRO( <nOption>, [<lOnOff>] ) --> <lOldSetting>
|
|
* $ARGUMENTS$
|
|
* <nOption> One of the HB_SM_* constants defined in set.ch.
|
|
*
|
|
* <lOnOff> .T. to enable or .F. to disable a feature
|
|
* $RETURNS$
|
|
* HB_SETMACRO() return the old state of requested feature.
|
|
* $DESCRIPTION$
|
|
* This function enables or disables some features of the macro
|
|
* compiler. The Harbour is extending the macro features compared
|
|
* to an original set available in CA-Cl*pper. Enabling/disabling
|
|
* some of them allows to keep strict CA-Cl*pper compatibility.
|
|
*
|
|
* Available features are:</par>
|
|
* <b>HB_SM_HARBOUR</b> - enables harbour extensions:
|
|
* operators: ++, --, +=, -=, *=, /=, ^=
|
|
* objects: assigments to an instance variable
|
|
*
|
|
* <b>HB_SM_XBASE</b> - enables other Xbase++ dialects extensions:</par>
|
|
* expanding of expresions lists
|
|
*
|
|
* <b>HB_SM_SHORTCUTS</b> - enables optimized evaluation of
|
|
* logical operators (.and., .or.)
|
|
*
|
|
* <b>HB_SM_PREPROC</b> - enables preprocessing of commands
|
|
* This is meaningfull if Harbour is compiled with
|
|
* HB_MACRO_STATEMENTS flag
|
|
*
|
|
* $EXAMPLES$
|
|
* INIT PROCEDURE IWANTCLIPPER()
|
|
* HB_SETMACRO( HB_SM_HARBOUR, .F. )
|
|
* HB_SETMACRO( HB_SM_XBASE, .F. )
|
|
* RETURN
|
|
* $STATUS$
|
|
* R
|
|
* $COMPLIANCE$
|
|
* H
|
|
* $PLATFORMS$
|
|
* All
|
|
* $FILES$
|
|
* Header file is set.ch
|
|
* Library is macro
|
|
* $SEEALSO$
|
|
* Macro compiler
|
|
* $END$
|
|
*/
|