News:

Masm32 SDK description, downloads and other helpful links
Message to All Guests

Main Menu

New Member (re: Visual MASM IDE)

Started by ThomasJaeger, March 07, 2015, 03:43:15 AM

Previous topic - Next topic

GoneFishing

I've seen many such errors and each of them with its unique "address" - and "4x" as well


dedndave

i had that problem when i first started programming with the win32 API

for a while, i thought "0xC0000005" was my name   :lol:

what helped me was to learn more about the Hungarian Notation convention

https://msdn.microsoft.com/en-us/library/aa260976%28v=vs.60%29.aspx
http://en.wikipedia.org/wiki/Hungarian_notation

the errors usually happen when you pass a value as an argument, and the function wants a pointer to a value
there are even a few places where MSDN has an argument typed incorrectly, but that is rare