Short Answer
#define internal static will replace every word called internal back to static, and…
Oh.
DLL file has path to pdb file embedded inside. If you would open DLL file in hex editor you s…
The PDB is an option supplied to the linker, so probably the linker sets this filename somewhere …
I've forgotten the second part of my question, one that really baffles me.
Why the hell does it …
thank you for the replay
my question is little ambiguous
I meant when I'm debugging the applicat…
MSDN documentation on cl/link arguments is pretty good, use it:
https://msdn.microsoft.com/en-us/…
when debugging, does anyone know how visual studio can tell what the name of the PDB file for han…
thank you a lot this is very helpful
but what is this syntax I can't find the documentation and …
As a sidenote, it is usually good form to do the typedef version when you are making a header tha…
You can also use anonymous struct there:
1
2
3
4
5
6
7
8
9
10typedef struct
{
char *…
Adam —
Cheers for the explanations! abnercoimbre, whats the virtue of using typedef life that? Why not j…
Sealatron wrote:
Just curious why struct==class is a benefit?
I didn't mean that the C struct is…
jorockstar Hello everyone, I have installed VS community 2013 and when I debug my code, I can't g…
Sealatron Just curious why struct==class is a benefit? Does that mean they're interchangeable or …
Hello everyone, I have installed VS community 2013 and when I debug my code, I can't get the watc…
Adam —
abnercoimbre I am wondering why casey is using cpp files but writing in a C fashion, (and not jus…
Given that this week we have no stream, it'll give those of us working on this a chance to add th…
Thanks! I'm not that far myself so hadn't spotted it :) We're figuring out a way to automate thes…
Thanks for putting this out, I can actually stretch the video. There's one broken link in day 58.…
For a long time I have put cpp after my file but only use classes. I knew about inharence but nev…
I am wondering why casey is using cpp files but writing in a C fashion, (and not just use plain C…
Casey have mentioned that he does like some of C++ features and that is why he uses C++ not pure …
nikki —
I am wondering why casey is using cpp files but writing in a C fashion, (and not just use plain C…
Stupid me. Make another header for custom types - I can swear I had that thought.
Thanks.
So I g…
The preprocessor runs independently for each file. Should you have #define internal static on a s…
When Casey started separating source code into multiple files, I noticed that handmade.h and hand…
For the record, yes, I usually have bool8, bool16, bool32, bool64. This has nothing to do with a…
5sw
To get meaningful results you really should compile with optimizations for such tests.
To b…
but after he called Casey a novice programmer
I don't think he was talking about Casey. I think …
insanoflex512 Speaking of programming paradigms, I read an article bashing "compression oriented …