News:

Masm32 SDK description, downloads and other helpful links
Message to All Guests

Main Menu

Custom macros in Easy Code?

Started by Paulo, September 13, 2013, 09:11:36 PM

Previous topic - Next topic

Paulo

Hi Ramon

I have a few custom macros which I often use with Masm32, can I use them in Easy Code (always get a syntax error message) and where do I declare it?

Thanks.

===================
UPDATE:
===================

Please ignore question, it's sorted.

rsala

Hi Paulo,

Thanks for using Easy Code.

Yes, you can use your macros in Easy Code. You should declare them in the Window/Module you are going to invoke them, or even better you can write them in an ".inc" file. The you place that ".inc" file in the project folder and include it in the project by using the "Project-->Add files..." menu option. That way, they will be available to all Windows/Modules in the project.

If the macros are well coded, you should not get any error message.

Regards,

Ramon
EC coder

Paulo


rsala

EC coder