hb_objGetpMethod() compiled as extern "C" for MSVC compatibility with xHarbour

This commit is contained in:
Antonio Linares
2005-02-16 12:52:01 +00:00
parent 5559b2edf8
commit fd3a96bead

View File

@@ -215,7 +215,15 @@ static void hb_clsRelease( PCLASS );
char * hb_objGetRealClsName( PHB_ITEM pObject, char * szName );
PHB_FUNC hb_objGetMethod( PHB_ITEM, PHB_SYMB );
PHB_FUNC hb_objGetMthd( PHB_ITEM pObject, PHB_SYMB pMessage, BOOL lAllowErrFunc );
PMETHOD hb_objGetpMethod( PHB_ITEM, PHB_SYMB );
#ifdef _MSC_VER
extern "C" {
#endif
PMETHOD hb_objGetpMethod( PHB_ITEM, PHB_SYMB );
#ifdef _MSC_VER
}
#endif
BOOL hb_objHasMsg( PHB_ITEM pObject, char * szString );
void * hb_mthRequested( void );