Add more windows get64 fixes

This commit is contained in:
Cary R 2026-01-25 18:17:59 -08:00
parent 8014c5cee2
commit 2f05c831c0
2 changed files with 7 additions and 1 deletions

View File

@ -1,5 +1,5 @@
/*
* Copyright (c) 2019-2025 Martin Whitaker (icarus@martin-whitaker.me.uk)
* Copyright (c) 2019-2026 Martin Whitaker (icarus@martin-whitaker.me.uk)
*
* This source code is free software; you can redistribute it
* and/or modify it in source code form under the terms of the GNU
@ -91,6 +91,11 @@ PLI_INT32 vpi_get(int property, vpiHandle ref)
assert(vpip_routines);
return vpip_routines->get(property, ref);
}
PLI_INT64 vpi_get64(int property, vpiHandle ref)
{
assert(vpip_routines);
return vpip_routines->get64(property, ref);
}
char*vpi_get_str(PLI_INT32 property, vpiHandle ref)
{
assert(vpip_routines);

View File

@ -2020,6 +2020,7 @@ vpip_routines_s vpi_routines = {
.iterate = vpi_iterate,
.scan = vpi_scan,
.get = vpi_get,
.get64 = vpi_get64,
.get_str = vpi_get_str,
.get_delays = vpi_get_delays,
.put_delays = vpi_put_delays,