Thread: DLLs

  1. #1
    Banned
    Join Date
    Oct 2004
    Posts
    250

    DLLs

    what do you use DLLs for and would they be of any use for a new C++ programmer to learn?

  2. #2
    Registered User
    Join Date
    Sep 2004
    Location
    California
    Posts
    3,268
    DLLs are just function librarys. You can take a bunch of functions (and/or classes), and compile them into a DLL. This allows you to share/reuse code without needing the source code. You probably wont have much use for creating DLLs as a new programmer.

  3. #3
    Registered User
    Join Date
    Jul 2004
    Posts
    98
    I use dll to process my capture video stuff. you can look at this web:
    www.avisynth.org

Popular pages Recent additions subscribe to a feed

Similar Threads

  1. Protection of DLLs
    By Poche in forum C# Programming
    Replies: 5
    Last Post: 06-04-2009, 08:30 PM
  2. Some doubts on DLLs
    By BrownB in forum Windows Programming
    Replies: 1
    Last Post: 05-30-2007, 02:25 AM
  3. standart dlls
    By keeper in forum C++ Programming
    Replies: 3
    Last Post: 07-05-2006, 07:32 PM
  4. Can't load string from resource DLL's string table
    By s_k in forum Windows Programming
    Replies: 4
    Last Post: 07-15-2003, 06:43 AM
  5. question about DLL's and class functions
    By btq in forum Windows Programming
    Replies: 2
    Last Post: 02-25-2003, 06:08 AM