Jan 15, 2011 at 9:37pm UTC
And import it to the location where your compiler stores it's base header files, will your program be non-portable to other systems when compiled (because they don't have access to the specific header)? I would think not, as the headers are compiled into the program itself right? If so then it wouldn't matter.
Jan 15, 2011 at 9:46pm UTC
If you distribute your program in binary form all source files information is lost, you need only to worry about dynamic libraries
Jan 15, 2011 at 9:57pm UTC
ok... so i'm a newbie... and i kinda have no idea what you just said.
"in binary form"
does this mean just a win32 console? or is this a specific setting necessary to declare?
"you need only worry about dynamic libraries"
I don't know what those are, so i'm pretty sure they aren't in my program.
What i did was made it so that instead of
#include "pause.h" //which i wrote
it became
#include <pause.h>
by moving the source file to the specific directory of my compiler that stores headers
will this cause any problems trying to give this to friends or whatnot?
Jan 15, 2011 at 10:05pm UTC
"in binary form " means the executable program ie: not sourcecode distribution
Jan 15, 2011 at 10:47pm UTC
ah. Hahahaha i feel like such a newbie :P thanks though, I appreciate it.