Page 1 of 1

[RELEASE] A Simple DLL Source

PostPosted: Sat Mar 29, 2008 4:58 am
by ravenflyer
To the beginners in C++ it a source of one dll, to you get started in this "world".

In the source I put some Observations. Enjoy.

http://rapidshare.com/files/103138086/COD1.5_Example.rar.html

Oh the credit is of an guy from MPC Forum :P
But i made a little modification u.u

PostPosted: Sat Mar 29, 2008 7:17 am
by mezzo
[moved to knowledge base]

Code submission is for LSS code.

Re: [RELEASE] A Simple DLL Source

PostPosted: Tue Apr 22, 2008 10:13 pm
by tiduswong
ravenflyer wrote:To the beginners in C++ it a source of one dll, to you get started in this "world".

In the source I put some Observations. Enjoy.

http://rapidshare.com/files/103138086/COD1.5_Example.rar.html

Oh the credit is of an guy from MPC Forum :P
But i made a little modification u.u



not get wad u saying

PostPosted: Wed Apr 23, 2008 1:08 pm
by shinnsohai
Raven.. it just a dll? how to make script... i willing to learn C++ what website u read can gv example? me use http://www.cprogramming.com/ i not fully understand what its wrote :lol:

PostPosted: Thu Oct 15, 2009 6:00 pm
by Oggy
Hi, this may not be useful. But here is my simple DLL source code.
It may not work as I can't test right now, but it should.

Code: Select all
; ** BASIC dll source.
ProcedureDLL CallMessageBox()
    MessageBox(0,"Title","Hello World"+Chr(13)+"This is a DLL Source code in BASIC!",#MB_OK)
  EndProcedure

  If OpenLibrary(0, "myDLL.dll")
    CallFunction(0, "CallMessageBox")
    CloseLibrary(0)
  EndIf

Hope this helps, even if I did it wrong. Been awhile since I fooled with BASIC.