thanks! I´ll have a look :D
[color=#0088ff]Update:[/color]
In the preface it smacked me with:
…
nikki —
I am learning the basics from http://c.learncodethehardway.org/book/ and I think it's a great res…
nikki —
Hi to get up to speed with C I am following http://c.learncodethehardway.org/book/
offcourse a bi…
Hi,
i have just starded watching the Handmade Hero Series. I wanted to set up my stuff exactly a…
First of I just want to say thanks for doing such an amazing thing as you are doing by sharing yo…
The problem with this analysis is that the game never actually sleeps for 1/30th of a second. It…
Logo —
Sorry if this has been brought up and/or fixed, I'm late to the party and only on day 20 or so. P…
Ah, thanks. I was confused because there was no way to tell how much audio to write until the nex…
Yes, you need to introduce some latency. Not whole second though. But something like 1/2 or maybe…
Does anybody here have experience using WASAPI for audio? I've run into a problem with it:
So in…
Thanks for your tips, guys :) Nothing special, but it did throw me for a loop a bit.
And well, on…
Correct. And sorry for misunderstanding your second question!
Yes, he has mentioned he uses metaprogramming for that. C code that generates C code.
Here's one…
Casey said in an early episode that templates is mostly useless and that he don't use them.
Have …
In such case you are accessing completely different variable.
If you put something as "static" in…
I understand what define does.
What I don't understand is how come the variable in a header file,…
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…