OK, this works in GoASM:
.Data
; ...
TQSL_PROVIDER_ST Struct
organizationName DB 101H Dup 0
organizationalUnitName DB 101H Dup 0
emailAddress DB 101H Dup 0
url DB 101H Dup 0
EndS
provider TQSL_PROVIDER_ST
.Code
; ...
Invoke MessageBoxA, [hWnd], Addr provider.organizationName, 'LotW Test 1', MB_OK
So I'm able to define the corresponding structure in GoASM, which is very useful. But my uninformed mind is wondering if there's not a way to just directly import these definitions from the file with the TYPEDEFs. Is that possible somehow?
Gary