peterworth
Programmer
when i declare a struct which is defined in this header there are no compiler errors, but when i step through the code the variable does not seem to exist after it is declared. for example:
at the second line (and beyond), the debugger says the symbol bmih is not found.
does anyone know why this might be? i've tried explicitly including wingdi.h just to make sure..
Code:
BITMAPINFOHEADER bmih;
bmih.biSize = sizeof(BITMAPINFOHEADER);
does anyone know why this might be? i've tried explicitly including wingdi.h just to make sure..