#-zkl = current codepage
OFLAGS=-ot -ox -ob -oh# -or -om -ol -ol+
-FLAGS=-0 -d2 -wo $(OFLAGS) -zkl -mh# -zdp# -zm# -zp16 -zq
+FLAGS=-0 -d2 -wo $(OFLAGS) -zkl -zm# -mh# -zdp# -zm# -zp16 -zq
DIRSEP=\
SRC=src$(DIRSEP)\r
SRCLIB=$(SRC)lib$(DIRSEP)
/* allocate the buffer */
//printf("%zu\n", _memmax());\r
bufSize = (/*(dword)*/result.width * result.height);
- result.data = (byte __near *)malloc(bufSize);
+ result.data = malloc(bufSize);
// result.data = (byte far *)_fmalloc(bufSize);
// result.data = (byte __huge *)halloc(bufSize, sizeof(byte));
- printf("&bufSize=%p\n", &bufSize);
+ /*printf("&bufSize=%p\n", &bufSize);
printf("&result.data=%p\n", result.data);
printf("Size of block is %zu bytes\n", _msize(result.data));
printf("Size of bufSize is %zu bytes\n", bufSize);
printf("Size of result.width is %zu \n", result.width);
printf("Size of result.height is %zu \n", result.height);
- printf("Dimensions of result is %lu\n", (dword)result.width*result.height);
+ printf("Dimensions of result is %lu\n", (dword)result.width*result.height);*/
//exit(0);
if(!result.data) {
fprintf(stderr, "Could not allocate memory for bitmap data.");\r