-
oooo i didnt know visual studio uses different header based on what language im using.
sweet that works, THANKS! :D
im getting this warning now. was this what you were talking about bubba?
Code:
c:\startupplot.c(161) : warning C4013: 'malloc' undefined; assuming extern returning int
c:\startupplot.c(164) : warning C4013: 'free' undefined; assuming extern returning int
-
Include stdlib.h. for C or cstdlib for C++. Didn't we cover this already? :rolleyes:
-
sorry... i loaded an old version of the code and made the changes again (i thought) because i was getting some weird errors.
whoops.
-
BOOYEAH!
Thanks guys you're the best!
-
when i compile this DLL there is a lot of other stuff made.
.pch
.obj
etc
do i need to take this with me when i take my dll places?
also there is debug and release. I dont know what release means but im told it is better... how do i make this?
-
.pch are precompiled headers. They make the compilation process faster. You don't need to distribute them. .obj are compiled source code files that are not linked. You don't need to distribute them.
As far as switching between debug and release..... RTM. It's IDE/compiler specific. For MSVS, it should be right there in front of you. :p