News:

MASM32 SDK Description, downloads and other helpful links
MASM32.com New Forum Link
masmforum WebSite

Master Library

Started by PBrennick, July 20, 2006, 01:26:00 AM

Previous topic - Next topic

PBrennick

I am creating a Master library of the most frequently used LIBs.  You can help by posting your recommendations of what I should include.

Paul
The GeneSys Project is available from:
The Repository or My crappy website

Vortex

i) kernel32.lib
ii) user32.lib
iii) gdi32.lib
iv) msvcrt.lib
v) GeneSys.lib

ToutEnMasm

kernel32.lib
user32.lib
gdi32.lib
winspool.lib
comdlg32.lib
advapi32.lib
shell32.lib
ole32.lib
oleaut32.lib

Tedd

kernel32
user32
gdi32
comctl32
comdlg32
advapi32
shell32
ole32
oleaut32


..roughly in order of (my) common usage

{I will get in on contributing to this project, once I get a little less busy ::)}
No snowflake in an avalanche feels responsible.

NightWare

hi all,

if you want kernel32 user32, etc... you have to include ntdll (coz it's heavily used by those libraries)

PBrennick

NightWare,
I am not sure about that one.  I use kernel32 and user32 all the time but have NEVER used ntdll.  It is possible that these libraries handle the ntdll dependancy all by themselves in which case we do not need to worry about it.

Paul
The GeneSys Project is available from:
The Repository or My crappy website

Faiseur

QuoteNightWare,
I am not sure about that one.  I use kernel32 and user32 all the time but have NEVER used ntdll.  It is possible that these libraries handle the ntdll dependancy all by themselves in which case we do not need to worry about it.

Yes, using kernel32, user32, etc, Windows 'switch' itself to ntdll API. "ntdll" library is necessary to use the ntdll native API directly.





French asm Forum: http://www.asmforum.net/   Website: http://www.faiseur.net/

Vortex


Faiseur

Thanks Vortex,

i have a ntdll.lib/.inc with kmdkit by Four-F:

http://www.freewebs.com/four-f/




French asm Forum: http://www.asmforum.net/   Website: http://www.faiseur.net/