The MASM Forum

Miscellaneous => The Orphanage => Topic started by: shankle on July 15, 2018, 05:45:45 AM

Title: seems all I do is complain - bitblt this time
Post by: shankle on July 15, 2018, 05:45:45 AM
I have an old copy of bitblt from 2000. The holes I punched to put it in a folder are
worn through. Looked on "ask" and "Google". I could not find the same format as I have
from 2000. What in the world is going on??????????????????
Title: Re: seems all I do is complain - bitblt this time
Post by: shankle on July 18, 2018, 11:32:04 PM
Surly somewhere there is a list of Microsoft/s APIs without all this new nonsense!!!!!
Title: Re: seems all I do is complain - bitblt this time
Post by: shankle on July 19, 2018, 12:44:09 AM
I guess the APIs are now a big secret. So this means we stop programming????????
Title: Re: seems all I do is complain - bitblt this time
Post by: Caché GB on July 19, 2018, 02:47:49 AM
Hello  shankle

Is this what you wanted.

From VC98 header file WINGDI.H
WINGDIAPI BOOL  WINAPI BitBlt(HDC, int, int, int, int, HDC, int, int, DWORD);

From VC2015 header file wingdi.h
WINGDIAPI BOOL  WINAPI BitBlt( _In_ HDC hdc, _In_ int x, _In_ int y, _In_ int cx, _In_ int cy, _In_opt_ HDC hdcSrc, _In_ int x1, _In_ int y1, _In_ DWORD rop);

Title: Re: seems all I do is complain - bitblt this time
Post by: shankle on July 19, 2018, 04:41:04 AM
Thank you for replying CacheGB.
There used to be hundreds of APIs on the Microsoft sight.
Now what's there is useless IMHO.
No, in answer to your response. It is a 2 page listing consisting
of 9 parameters, details of each parameter, Return Values,
Remarks and requirements. 
Title: Re: seems all I do is complain - bitblt this time
Post by: Vortex on July 19, 2018, 04:47:14 AM
Iczelion's Simple Bitmap tutorial explains the usage of BitBlt :

http://win32assembly.programminghorizon.com/tut25.html
Title: Re: seems all I do is complain - bitblt this time
Post by: shankle on July 19, 2018, 09:36:42 AM
Thanks Vortex.
It is for my library of APIs.
Just need a new copy.