The MASM Forum

General => The Campus => Topic started by: nabil on August 24, 2014, 04:01:44 AM

Title: Need recommendation | where to learn advanced asm
Post by: nabil on August 24, 2014, 04:01:44 AM
Hello
I have been learning asm ( masm ). i know all about arithmetic functions,branching,looping,procedures,string operating all the stuff. And i am good at those and can write program ( console ). Now i need help about i wanna go further. i want to learn all the things i can with do with operating system  like getting host name,delete file,copy file, those operation.
what can i start with?
Thank You
Title: Re: Need recommendation | where to learn advanced asm
Post by: dedndave on August 24, 2014, 04:10:47 AM
well - there are many related functions
however, a good place to start might be SHFileOperation

http://msdn.microsoft.com/en-us/library/windows/desktop/bb762164%28v=vs.85%29.aspx (http://msdn.microsoft.com/en-us/library/windows/desktop/bb762164%28v=vs.85%29.aspx)

http://msdn.microsoft.com/en-us/library/windows/desktop/bb759795%28v=vs.85%29.aspx (http://msdn.microsoft.com/en-us/library/windows/desktop/bb759795%28v=vs.85%29.aspx)

here is some example code...

http://masm32.com/board/index.php?topic=1116.0 (http://masm32.com/board/index.php?topic=1116.0)

if you want to write a "serious" app, get used to UNICODE function versions and working with UNICODE pathname strings
Title: Re: Need recommendation | where to learn advanced asm
Post by: vogelsang on August 24, 2014, 04:23:03 AM
hi nabil,

Iczelion tutorial is good to learn window application creating:

http://win32assembly.programminghorizon.com/tutorials.html (http://win32assembly.programminghorizon.com/tutorials.html)
Title: Re: Need recommendation | where to learn advanced asm
Post by: Gunther on August 24, 2014, 09:20:17 AM
Hi nabil,

you'll find a lot of good examples by browsing The Campus, The Workshop, and The Laboratory here and in the old UK forum. And welcome to the forum.

Gunther