This page should receive a lot of attention over the next few weeks/months as I'm actively trying to learn this language.
Various resources in no particular order (I'll eventually organize them)
I am hoping to create a volume limiter for use at work and after some light research I'll use WinAPI functions from the Winmm library.
I had looked at these for ideas …
but this article gave me what i was looking for:
Of interest is this forum posting:
To workaround this issue, do not link your application with WINMM, but
instead use LoadLibrary to import the function at runtime.
An application does this by calling the LoadLibrary function to load the
DLL and then calling the GetProcAddress function to retrieve the address of
the required function. The application should
check the values returned from LoadLibrary and from GetProcAddress to
ensure that these functions succeed. If the DLL is not found or does not
export the desired function, one of these calls fails, and the
application can handle the error gracefully.
Multimedia Functions
I won't need these however:
Note sure about this one:
I'm using these books to teach myself
I haven't been using these lately, but in the future I'll make (more) use of them8)
The descriptions are borrowed from the tool websites
#include <iostream.h>
instead of: #include <iostream>
Sadly enough it also isn't listed on the publisher's site and I can't find any other mention of errata for it.