2012-06-06 15:17 UTC+0200 Viktor Szakats (harbour syenar.net)

* utils/hbmk2/hbmk2.prg
    * marked hbmk2_* plugin API functions with HB_LEGACY_LEVEL4
This commit is contained in:
Viktor Szakats
2012-06-06 13:18:07 +00:00
parent 84fd6f8dd1
commit ee6129dd7d
2 changed files with 8 additions and 0 deletions

View File

@@ -16,6 +16,10 @@
The license applies to all entries newer than 2009-04-28.
*/
2012-06-06 15:17 UTC+0200 Viktor Szakats (harbour syenar.net)
* utils/hbmk2/hbmk2.prg
* marked hbmk2_* plugin API functions with HB_LEGACY_LEVEL4
2012-06-06 12:53 UTC+0200 Viktor Szakats (harbour syenar.net)
* utils/hbmk2/hbmk2.prg
+ added code signing options to help screen (though still

View File

@@ -8613,6 +8613,8 @@ STATIC PROCEDURE PlugIn_Load( hbmk, cFileName )
/* Public functions accessible for plugins (compatibility) */
#if defined( HB_LEGACY_LEVEL4 )
FUNCTION hbmk2_FindInPath( ... ) ; RETURN hbmk_FindInPath( ... )
FUNCTION hbmk2_PathSepToForward( ... ) ; RETURN hbmk_PathSepToForward( ... )
FUNCTION hbmk2_PathSepToSelf( ... ) ; RETURN hbmk_PathSepToSelf( ... )
@@ -8636,6 +8638,8 @@ FUNCTION hbmk2_AddInput_OBJ( ... ) ; RETURN hbmk_AddInput_OBJ(
FUNCTION hbmk2_AddInput_INSTFILE( ... ) ; RETURN hbmk_AddInput_INSTFILE( ... )
FUNCTION hbmk2_Register_Input_File_Extension( ... ) ; RETURN hbmk_Register_Input_File_Extension( ... )
#endif
/* Public functions accessible for plugins */
FUNCTION hbmk_FindInPath( ... ) ; RETURN FindInPath( ... )