C/C++
cprog.asc
Associated article: C Programming
Tags: C/C++
Published source code accompanying Al Stevens column on topics ranging from Setup versus Uninstall programs, Registry versus .INI files, and the Kevorkian algorithm. He then returns to MidiFitz, a MIDI program that reads an 88-key keyboard, parses the notes into chords in real time, and plays a matching bass line.
_C Programming Column_ by Al Stevens Example 1: [HKEY_CURRENT_USERSoftwareMicrosoftWindows CurrentVersionExplorerShell Folder] "Programs"="C:WINDOWSStart MenuPrograms" Example 2: #include <WINNETWK.H> #include <SHLOBJ.H> // ... char wpath[MAX_PATH]; LPITEMIDLIST item; SHGetSpecialFolderLocation(0, CSIDL_PROGRAMS, &...


