Conventions used
There are a number of text conventions used throughout this book.
Code in text
: Indicates code words in text, database table names, folder names, filenames, file extensions, pathnames, dummy URLs, user input, and Twitter handles. Here is an example: “We can get the first IMAGE_BASE_RELOCATION
structure at the address of the relocation table.”
A block of code is set as follows:
#include <Windows.h> Int main(void) { MessageBoxA(0, "hi there.", "info", 0); return 0; }
When we wish to draw your attention to a particular part of a code block, the relevant lines or items are set in bold:
#include <Windows.h> Int main(void) { MessageBoxA(0, "hi there.", "info", 0); return 0; }
Bold: Indicates a new term, an important word, or words that you see onscreen. For instance, words in menus or dialog boxes appear in bold. Here is an example: “Its function is to pop up a window with the info title and the hi there content.”
Tips or important notes
Appear like this.