Hello Jackson,
Yes, but you cannot simply create another MsgInfo() function with the same name because MinGW compiler will generate a duplicate symbol/function error during linking.
If your goal is to replace all calls to MsgInfo() with your own implementation, you can use a preprocessor directive such as:
#translate MsgInfo( <cMsg>, [<cTitle>] ) => MyMsgInfo( <cMsg>, <cTitle> )and then implement your own MyMsgInfo() function.
This way, every call to MsgInfo() in your application source code will be translated to MyMsgInfo() at compile time, avoiding any duplicate function definitions.
Regards.
Grigory--
Visit our website on https://www.hmgextended.com/ or https://www.hmgextended.org/
---
You received this message because you are subscribed to the Google Groups "Harbour Minigui" group.
To unsubscribe from this group and stop receiving emails from it, send an email to minigui-foru...@googlegroups.com.
To view this discussion, visit https://groups.google.com/d/msgid/minigui-forum/dc2dfe2b-630b-4511-b634-3db331fe733dn%40googlegroups.com.