I try to learn how to create a .DLL dynamic link library, the book I read is not current, and it tells how to make a .DLL for windows 32 bits. I use VS 2017 PRO, the book is narrated with VS 2013.
in the book SC starts like this
// Dll1.cpp : Defines the exported functions for the DLL application.
//
#include windows.h
and when I try to adapt to VS 2017 PRO my project is a .DLL dynamic link library EMPTY so it looks like this.
// Dll1.cpp : Defines the exported functions for the DLL application.
//
#include "stdafx.h"
What is the difference between these two ** HEADERS ** (headers)
- windows.h
- stdafx.h