Function prototypes are not specific to Visual C++ - they're part of
ANSI C, which C++ is a superset of. They're conceptually very similar to the class declarations that you define in your header files. Your book may not have mentioned them if it only talked about C++ classes and didn't talk about global C-style functions.
- Elton