If I put all my controls inside the EXE, is it accessible from outside like it would be accessible when it's placed in a DLL?
|
|
|||||
|
|
|
As mentioned by BobbyShaftoe, it depends on whether you're using managed or unmanaged code, but I'll assume here that you're using unmanaged C or C++. Basically, a compiled executable (EXE or DLL, in the case of Windows) consists of a bunch of functions and global variables, and each one has a particular location in the executable's logical address space (which gets mapped onto physical memory addresses when the executable is loaded). If someone knows the address of a particular function or variable in their executable, there's not much you can do to stop them from using it — but in a DLL, that information is actually made available, so people can actually look up your functions (well, the ones you chose to export) by name. Usually you would provide a header file with your DLL, which would handle this name lookup, so they just have to call the functions as if they were part of their own program. |
||||||
|
|
|
So, the thing you're after is this notion of exporting symbols typically, unless you do something explicit, the symbols are not exported when you compile an exe in Windows. Now, if you're talking about .NET then the issue is a little different. However, I notice you tagged this with security; I wouldn't rely on this fact for security purposes. Code injection and so forth attacks are a little more sophisticated than that. |
||
|
|
