2011-03-02 15:30 UTC+0100 Viktor Szakats (harbour.01 syenar.hu)

* include/hbapicls.h
    ! Added missing export from C level class creation 
      functions (to make shared HBQT apps work on non-mingw targets)
This commit is contained in:
Viktor Szakats
2011-03-02 14:30:43 +00:00
parent 7aaaef1362
commit 08e4e055a1
2 changed files with 8 additions and 7 deletions

View File

@@ -16,6 +16,11 @@
The license applies to all entries newer than 2009-04-28.
*/
2011-03-02 15:30 UTC+0100 Viktor Szakats (harbour.01 syenar.hu)
* include/hbapicls.h
! Added missing export from C level class creation
functions (to make shared HBQT apps work on non-mingw targets)
2011-03-02 04:38 UTC+0100 Viktor Szakats (harbour.01 syenar.hu)
* utils/hbmk2/hbmk2.pt_BR.po
* utils/hbmk2/hbmk2.hu_HU.po

View File

@@ -133,13 +133,9 @@ extern HB_EXPORT PHB_ITEM hb_objSendMessage( PHB_ITEM pObj, PHB_DYNS pMessage,
/* send message which allows to set execution context for debugger */
extern HB_EXPORT void hb_dbg_objSendMessage( int iProcLevel, PHB_ITEM pObject, PHB_ITEM pMessage, int iParamOffset );
/* Harbour equivalent for Clipper internal __mdCreate() */
HB_USHORT hb_clsCreate( HB_USHORT usSize, const char * szClassName );
/* Harbour equivalent for Clipper internal __mdAdd() */
void hb_clsAdd( HB_USHORT usClassH, const char * szMethodName, PHB_FUNC pFuncPtr );
/* Harbour equivalent for Clipper internal __mdAssociate() */
void hb_clsAssociate( HB_USHORT usClassH );
extern HB_EXPORT HB_USHORT hb_clsCreate( HB_USHORT usSize, const char * szClassName ); /* Harbour equivalent for Clipper internal __mdCreate() */
extern HB_EXPORT void hb_clsAdd( HB_USHORT usClassH, const char * szMethodName, PHB_FUNC pFuncPtr ); /* Harbour equivalent for Clipper internal __mdAdd() */
extern HB_EXPORT void hb_clsAssociate( HB_USHORT usClassH ); /* Harbour equivalent for Clipper internal __mdAssociate() */
HB_EXTERN_END