How i Can Code Like "Two folder .dll"?

06/07/2011 00:31 Head, Cod,Own#1
I mean
1: Source = Main.cpp
2: ReSource = Addie.cpp

i want know witch is right

#include <Addie.cpp>
or
#include "Addie.cpp"
or
#define "Addie.cpp
With Is Right ?
06/07/2011 01:06 xxfabbelxx#2
The second one.

Greets
06/07/2011 16:53 Samī#3
The second one.
when the question and the anwer good please close the topic.

#closerquest
06/08/2011 14:07 Reiti1212#4
It's better if you include a header file.
Like that:
1: Source = Main.cpp
2: Header = Addie.h

and then you do:
#include "Addie.h"

That's the right style. Yours isn't wrong, but it is better this way.

mfg