Add more windows get64 fixes
This commit is contained in:
parent
8014c5cee2
commit
2f05c831c0
|
|
@ -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
|
* This source code is free software; you can redistribute it
|
||||||
* and/or modify it in source code form under the terms of the GNU
|
* 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);
|
assert(vpip_routines);
|
||||||
return vpip_routines->get(property, ref);
|
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)
|
char*vpi_get_str(PLI_INT32 property, vpiHandle ref)
|
||||||
{
|
{
|
||||||
assert(vpip_routines);
|
assert(vpip_routines);
|
||||||
|
|
|
||||||
|
|
@ -2020,6 +2020,7 @@ vpip_routines_s vpi_routines = {
|
||||||
.iterate = vpi_iterate,
|
.iterate = vpi_iterate,
|
||||||
.scan = vpi_scan,
|
.scan = vpi_scan,
|
||||||
.get = vpi_get,
|
.get = vpi_get,
|
||||||
|
.get64 = vpi_get64,
|
||||||
.get_str = vpi_get_str,
|
.get_str = vpi_get_str,
|
||||||
.get_delays = vpi_get_delays,
|
.get_delays = vpi_get_delays,
|
||||||
.put_delays = vpi_put_delays,
|
.put_delays = vpi_put_delays,
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue