Author Topic: Win64 Simple Download Manager using C Runtime Functions  (Read 9839 times)

Offline HD1920.1

  • Jr. Member
  • *
  • Posts: 40
Win64 Simple Download Manager using C Runtime Functions
« on: May 11, 2014, 01:09:13 PM »
Here is a simple download manager using C Runtime functions. It's not very good, but it's OK to use. Neither the URL nor the filename may contain spaces now, this will be corrected in a future version.

FAQ:
Q: How to build?
A:
Code: [Select]
nasm -fwin64 downmgr.asm (download this file from the attachment)
Code: [Select]
GoLink /console downmgr.obj msvcrt.dll urlmon.dll
Q: What about an improved version?
A: It comes when I had enough time  :)

Q: Will you implement a GUI?
A: No, I won't. If you want one, use a browser  :)

Q: How to use it?
A: e.g.
Code: [Select]
downmgr.exe
Code: [Select]
http://godevtool.com/Gorc.zip
Code: [Select]
GoRC.zip

Offline HD1920.1

  • Jr. Member
  • *
  • Posts: 40
UPDATE
« Reply #1 on: May 13, 2014, 02:46:49 PM »
I attached an updated version. It now uses WinAPI instead of C runtime. Spaces should be supported.

FAQ:

Q: GoLink throws errors. Why?
A: Replace msvcrt.dll with kernel32.dll (using WinAPI insted of C runtime)

Q: Where is beta 0.02?
A: It's so bad that it's not published.

Bugs:
- When the URL is invalid, an empty file is created.
« Last Edit: May 14, 2014, 12:19:04 PM by HD1920.1 »

Offline Hafiz Naser Aslam

  • Jr. Member
  • *
  • Posts: 2
Re: Win64 Simple Download Manager using C Runtime Functions
« Reply #2 on: April 10, 2015, 06:35:32 PM »
Hello! I have downloaded the downmgr.asm file but there are other functions which are defined in other modules. I need these files also can you upload them please.
« Last Edit: April 10, 2015, 06:37:13 PM by Hafiz Naser Aslam »