How to create a dll manager in an OS
- harmanjeet
- Posts: 10
- Joined: Sun Feb 06, 2011 7:03 am
- Location: India
- Contact:
How to create a dll manager in an OS
I am beginner to OSDev. I want to create a dll manager which can load or unload the dll files. I have no idea about this. Can someone help..?
- gravaera
- Member
- Posts: 737
- Joined: Tue Jun 02, 2009 4:35 pm
- Location: Supporting the cause: Use \tabs to indent code. NOT \x20 spaces.
Re: How to create a dll manager in an OS
Yo:
Please first discard the idea of specifically loading "DLLs". The "DLL" is a form of what is known as a "Shared executable". There are many "Executable formats". An executable format is nothing but an encapsulating specification for presenting information about a binary file to a kernel. Generally speaking, each executable format has the following sub-types for binaries:
Also, you'll notice I introduced several terms to you here: they're keywords you should look up so you can begin to understand what you need to know Google them up.
--All the best
gravaera
Please first discard the idea of specifically loading "DLLs". The "DLL" is a form of what is known as a "Shared executable". There are many "Executable formats". An executable format is nothing but an encapsulating specification for presenting information about a binary file to a kernel. Generally speaking, each executable format has the following sub-types for binaries:
- Executable
- Relocatable
- Shared
Also, you'll notice I introduced several terms to you here: they're keywords you should look up so you can begin to understand what you need to know Google them up.
--All the best
gravaera
17:56 < sortie> Paging is called paging because you need to draw it on pages in your notebook to succeed at it.
Re: How to create a dll manager in an OS
'DLL manager' and 'I am beginner to OSDev' seem to be not analogous. To develop shared memory manager you firstly should have done a pile of other work... You just want to understand how does it work? Windows - bright example.
- harmanjeet
- Posts: 10
- Joined: Sun Feb 06, 2011 7:03 am
- Location: India
- Contact:
Re: How to create a dll manager in an OS
Thanx Gravaera for the useful info. It will help.