 |
BorlandTalk.com Borland discussion newsgroups
|
| View previous topic :: View next topic |
| Author |
Message |
Lincon Xue Guest
|
Posted: Fri Dec 05, 2003 1:07 am Post subject: Help , urgently ! |
|
|
I want to complie and link all functions from ".dll" ".vxd" and ".sys" to
my ".exe" files.
So the end-users do not need any ".dll" or ".sys" or ".vxd" to install on
his local machine.
Let me know if it is possible.
If true , how to do it?
Thanks in advance!
|
|
| Back to top |
|
 |
Bruce Salzman Guest
|
Posted: Fri Dec 05, 2003 3:00 am Post subject: Re: Help , urgently ! |
|
|
| Quote: | I want to complie and link all functions from ".dll" ".vxd" and ".sys" to
my ".exe" files.
So the end-users do not need any ".dll" or ".sys" or ".vxd" to install on
his local machine.
Let me know if it is possible.
|
Sorry, not possible. DLL's are dynamic libraries (hence the name Dynamic
Link Library) and are loaded by Windows. You would need to recompile the
DLL's functions into a static library in order to statically link it with
your program. As for the .sys and .vxd files, they are device drivers (that
must be properly installed/registered with Windows) that are also loaded by
Windows itself.
Regards,
Bruce
|
|
| Back to top |
|
 |
Lincon Xue Guest
|
Posted: Fri Dec 05, 2003 3:22 am Post subject: Re: Help , urgently ! |
|
|
Bruce wroted:
| Quote: | Sorry, not possible. DLL's are dynamic libraries (hence the name Dynamic
Link Library) and are loaded by Windows. You would need to recompile the
DLL's functions into a static library in order to statically link it with
your program. As for the .sys and .vxd files, they are device drivers
(that
must be properly installed/registered with Windows) that are also loaded
by
Windows itself.
|
But must I install the .sys and .vxd in the direcotry of windowssystem32 ?
I want to let these files in same direcotry as the .exe . Is it possible?
|
|
| Back to top |
|
 |
Bruce Salzman Guest
|
Posted: Fri Dec 05, 2003 3:32 am Post subject: Re: Help , urgently ! |
|
|
| Quote: | But must I install the .sys and .vxd in the direcotry of windowssystem32
?
I want to let these files in same direcotry as the .exe . Is it possible?
|
It may be possible, but it is dangerous. If the file is deleted somehow,
and Windows expects it to be there, Bad Things Will Happen.
Regards,
Bruce
|
|
| Back to top |
|
 |
|
|
You cannot post new topics in this forum You cannot reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum You cannot vote in polls in this forum
|
|