vrclient: Move sources out of vrclient_x64 subfolder.

CW-Bug-Id: #22729
This commit is contained in:
Rémi Bernon 2023-10-03 13:19:46 +02:00 committed by Arkadiusz Hiler
parent 98a90a1458
commit e9aeba85f2
161 changed files with 165 additions and 165 deletions

View file

@ -0,0 +1,27 @@
/* This file is auto-generated, do not edit. */
#include "unix_private.h"
NTSTATUS IVRNotifications_IVRNotifications_001_GetErrorString( void *args )
{
struct IVRNotifications_IVRNotifications_001_GetErrorString_params *params = (struct IVRNotifications_IVRNotifications_001_GetErrorString_params *)args;
struct u_IVRNotifications_IVRNotifications_001 *iface = (struct u_IVRNotifications_IVRNotifications_001 *)params->linux_side;
params->_ret = (uint32_t)iface->GetErrorString( params->error, params->pchBuffer, params->unBufferSize );
return 0;
}
NTSTATUS IVRNotifications_IVRNotifications_001_CreateNotification( void *args )
{
struct IVRNotifications_IVRNotifications_001_CreateNotification_params *params = (struct IVRNotifications_IVRNotifications_001_CreateNotification_params *)args;
struct u_IVRNotifications_IVRNotifications_001 *iface = (struct u_IVRNotifications_IVRNotifications_001 *)params->linux_side;
params->_ret = (uint32_t)iface->CreateNotification( params->ulOverlayHandle, params->ulUserValue, params->strType, params->strText, params->strCategory, params->photo, params->notificationId );
return 0;
}
NTSTATUS IVRNotifications_IVRNotifications_001_DismissNotification( void *args )
{
struct IVRNotifications_IVRNotifications_001_DismissNotification_params *params = (struct IVRNotifications_IVRNotifications_001_DismissNotification_params *)args;
struct u_IVRNotifications_IVRNotifications_001 *iface = (struct u_IVRNotifications_IVRNotifications_001 *)params->linux_side;
params->_ret = (uint32_t)iface->DismissNotification( params->notificationId );
return 0;
}