flat assembler
Message board for the users of flat assembler.

Index > Windows > macro-less resources?

Author
Thread Post new topic Reply to topic
bitshifter



Joined: 04 Dec 2007
Posts: 796
Location: Massachusetts, USA
bitshifter 25 May 2009, 17:27
Hello
I am making large scale Win32 PE with no fasm include files.
This means that none of the standard fasm macro are visible.
So far i have coded everything except for resources.
I you have any code to describe any of the common
resources i would like to see how to get 'er done.

A good place to start would be fasm MiniPad example.
Code:
section '.rsrc' resource data readable

  ; resource directory

  directory RT_MENU,menus,\
            RT_ICON,icons,\
            RT_GROUP_ICON,group_icons,\
            RT_VERSION,versions

  ; resource subdirectories

  resource menus,\
           37,LANG_ENGLISH+SUBLANG_DEFAULT,main_menu

  resource icons,\
           1,LANG_NEUTRAL,icon_data

  resource group_icons,\
           17,LANG_NEUTRAL,main_icon

  resource versions,\
           1,LANG_NEUTRAL,version

  menu main_menu
       menuitem '&File',0,MFR_POPUP
                menuitem '&New',IDM_NEW
                menuseparator
                menuitem 'E&xit',IDM_EXIT,MFR_END
       menuitem '&Help',0,MFR_POPUP + MFR_END
                menuitem '&About...',IDM_ABOUT,MFR_END

  icon main_icon,icon_data,'minipad.ico'

  versioninfo version,VOS__WINDOWS32,VFT_APP,VFT2_UNKNOWN,LANG_ENGLISH+SUBLANG_DEFAULT,0,\
              'FileDescription','MiniPad - example program',\
              'LegalCopyright','No rights reserved.',\
              'FileVersion','1.0',\
              'ProductVersion','1.0',\
              'OriginalFilename','MINIPAD.EXE'    

_________________
Coding a 3D game engine with fasm is like trying to eat an elephant,
you just have to keep focused and take it one 'byte' at a time.
Post 25 May 2009, 17:27
View user's profile Send private message Reply with quote
bitRAKE



Joined: 21 Jul 2003
Posts: 4156
Location: vpcmpistri
bitRAKE 25 May 2009, 18:31
The \TOOLS\WIN32\PREPSRC program will show you exactly what the macros generate.
Post 25 May 2009, 18:31
View user's profile Send private message Visit poster's website Reply with quote
bitshifter



Joined: 04 Dec 2007
Posts: 796
Location: Massachusetts, USA
bitshifter 25 May 2009, 21:10
Thanks
I needed to get current version of fasm since mine had no tools.
These tools are a nice thing to have.
So far i tried PREPSRC like you said and it works good.
I look forward to tring out the other tools very soon.
Stuff like this makes fasm the best assembler in the universe!

_________________
Coding a 3D game engine with fasm is like trying to eat an elephant,
you just have to keep focused and take it one 'byte' at a time.
Post 25 May 2009, 21:10
View user's profile Send private message Reply with quote
bitRAKE



Joined: 21 Jul 2003
Posts: 4156
Location: vpcmpistri
bitRAKE 26 May 2009, 00:50
It's taken me some time to warm up to the preprocessor - viewing the PREPSRC output along with the macros has helped make reading them easier. I'm sure you noticed many of the IF blocks can be discarded. Generating sorted data or an array query balloons into several copies.
Post 26 May 2009, 00:50
View user's profile Send private message Visit poster's website Reply with quote
Display posts from previous:
Post new topic Reply to topic

Jump to:  


< Last Thread | Next Thread >
Forum Rules:
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum
You cannot attach files in this forum
You can download files in this forum


Copyright © 1999-2025, Tomasz Grysztar. Also on GitHub, YouTube.

Website powered by rwasa.