PellesC 9 issue.
A short example for that:
#define WIN32_LEAN_AND_MEAN
#include <windows.h>
PellesC 9 issue.
A short example for that:
void __cdecl WinMainCRTStartup(void)
{
DWORD dwPix, dwPixel = 0x123456;
void *pPixel;
//pPixel = &dwPix; // test
* (RGBTRIPLE *) pPixel = * (RGBTRIPLE *) &dwPixel ;
* (RGBTRIPLE *) pPixel = * (RGBTRIPLE *) (void*) &dwPixel ;
ExitProcess(0);
}