PBXB64 includes for PBXA64-includes-V2
======================================

These are the same WinAPI declaration includes used by PBXA64.
They work with PBXB64's PB/BASIC frontend for the DECLARE + CALL pattern.

Working examples (PB frontend):
  #INCLUDE "windows_core.pbi"
  CALL MessageBoxA(0, "Hello", "PBXB64", 0)

  #INCLUDE "kernel32.pbi"
  CALL Sleep(1000)

PB frontend known limits:
  - VARPTR currently supported for arrays only
  - Struct field access (obj.field) not yet lowered
  - &H hex literals not supported in this pass
  - For full WinAPI access, use the C frontend with C headers:
    #include <windows.h>  (future work)

All 46 .pbi files parse successfully.
For programs that need struct passing or pointer
manipulation, use PBXB64's C or B64 frontend.
