mirror of
https://git.suyu.dev/suyu/Yucom.git
synced 2025-12-24 08:14:34 +01:00
parent
f5ef49cf29
commit
5190d26e7e
107 changed files with 2790 additions and 2790 deletions
|
|
@ -5,7 +5,7 @@ NTSTATUS IVRIOBuffer_IVRIOBuffer_002_Open( void *args )
|
|||
{
|
||||
struct IVRIOBuffer_IVRIOBuffer_002_Open_params *params = (struct IVRIOBuffer_IVRIOBuffer_002_Open_params *)args;
|
||||
struct u_IVRIOBuffer_IVRIOBuffer_002 *iface = (struct u_IVRIOBuffer_IVRIOBuffer_002 *)params->linux_side;
|
||||
params->_ret = (uint32_t)iface->Open( params->pchPath, params->mode, params->unElementSize, params->unElements, params->pulBuffer );
|
||||
params->_ret = iface->Open( params->pchPath, params->mode, params->unElementSize, params->unElements, params->pulBuffer );
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
|
@ -13,7 +13,7 @@ NTSTATUS IVRIOBuffer_IVRIOBuffer_002_Close( void *args )
|
|||
{
|
||||
struct IVRIOBuffer_IVRIOBuffer_002_Close_params *params = (struct IVRIOBuffer_IVRIOBuffer_002_Close_params *)args;
|
||||
struct u_IVRIOBuffer_IVRIOBuffer_002 *iface = (struct u_IVRIOBuffer_IVRIOBuffer_002 *)params->linux_side;
|
||||
params->_ret = (uint32_t)iface->Close( params->ulBuffer );
|
||||
params->_ret = iface->Close( params->ulBuffer );
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
|
@ -21,7 +21,7 @@ NTSTATUS IVRIOBuffer_IVRIOBuffer_002_Read( void *args )
|
|||
{
|
||||
struct IVRIOBuffer_IVRIOBuffer_002_Read_params *params = (struct IVRIOBuffer_IVRIOBuffer_002_Read_params *)args;
|
||||
struct u_IVRIOBuffer_IVRIOBuffer_002 *iface = (struct u_IVRIOBuffer_IVRIOBuffer_002 *)params->linux_side;
|
||||
params->_ret = (uint32_t)iface->Read( params->ulBuffer, params->pDst, params->unBytes, params->punRead );
|
||||
params->_ret = iface->Read( params->ulBuffer, params->pDst, params->unBytes, params->punRead );
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
|
@ -29,7 +29,7 @@ NTSTATUS IVRIOBuffer_IVRIOBuffer_002_Write( void *args )
|
|||
{
|
||||
struct IVRIOBuffer_IVRIOBuffer_002_Write_params *params = (struct IVRIOBuffer_IVRIOBuffer_002_Write_params *)args;
|
||||
struct u_IVRIOBuffer_IVRIOBuffer_002 *iface = (struct u_IVRIOBuffer_IVRIOBuffer_002 *)params->linux_side;
|
||||
params->_ret = (uint32_t)iface->Write( params->ulBuffer, params->pSrc, params->unBytes );
|
||||
params->_ret = iface->Write( params->ulBuffer, params->pSrc, params->unBytes );
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
|
@ -37,7 +37,7 @@ NTSTATUS IVRIOBuffer_IVRIOBuffer_002_PropertyContainer( void *args )
|
|||
{
|
||||
struct IVRIOBuffer_IVRIOBuffer_002_PropertyContainer_params *params = (struct IVRIOBuffer_IVRIOBuffer_002_PropertyContainer_params *)args;
|
||||
struct u_IVRIOBuffer_IVRIOBuffer_002 *iface = (struct u_IVRIOBuffer_IVRIOBuffer_002 *)params->linux_side;
|
||||
params->_ret = (uint64_t)iface->PropertyContainer( params->ulBuffer );
|
||||
params->_ret = iface->PropertyContainer( params->ulBuffer );
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
|
@ -45,7 +45,7 @@ NTSTATUS IVRIOBuffer_IVRIOBuffer_002_HasReaders( void *args )
|
|||
{
|
||||
struct IVRIOBuffer_IVRIOBuffer_002_HasReaders_params *params = (struct IVRIOBuffer_IVRIOBuffer_002_HasReaders_params *)args;
|
||||
struct u_IVRIOBuffer_IVRIOBuffer_002 *iface = (struct u_IVRIOBuffer_IVRIOBuffer_002 *)params->linux_side;
|
||||
params->_ret = (bool)iface->HasReaders( params->ulBuffer );
|
||||
params->_ret = iface->HasReaders( params->ulBuffer );
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue