mirror of
https://git.suyu.dev/suyu/Yucom.git
synced 2025-12-22 05:36:09 +01:00
lsteamclient: Use declspec to generate C++ method signature.
CW-Bug-Id: #22729
This commit is contained in:
parent
992384b88f
commit
122e0e362c
192 changed files with 2659 additions and 2666 deletions
|
|
@ -37,17 +37,17 @@ const char * cppISteamUtils_SteamUtils009_GetIPCountry(void *linux_side)
|
|||
return ((ISteamUtils*)linux_side)->GetIPCountry();
|
||||
}
|
||||
|
||||
bool cppISteamUtils_SteamUtils009_GetImageSize(void *linux_side, int iImage, uint32 * pnWidth, uint32 * pnHeight)
|
||||
bool cppISteamUtils_SteamUtils009_GetImageSize(void *linux_side, int iImage, uint32 *pnWidth, uint32 *pnHeight)
|
||||
{
|
||||
return ((ISteamUtils*)linux_side)->GetImageSize((int)iImage, (uint32 *)pnWidth, (uint32 *)pnHeight);
|
||||
}
|
||||
|
||||
bool cppISteamUtils_SteamUtils009_GetImageRGBA(void *linux_side, int iImage, uint8 * pubDest, int nDestBufferSize)
|
||||
bool cppISteamUtils_SteamUtils009_GetImageRGBA(void *linux_side, int iImage, uint8 *pubDest, int nDestBufferSize)
|
||||
{
|
||||
return ((ISteamUtils*)linux_side)->GetImageRGBA((int)iImage, (uint8 *)pubDest, (int)nDestBufferSize);
|
||||
}
|
||||
|
||||
bool cppISteamUtils_SteamUtils009_GetCSERIPPort(void *linux_side, uint32 * unIP, uint16 * usPort)
|
||||
bool cppISteamUtils_SteamUtils009_GetCSERIPPort(void *linux_side, uint32 *unIP, uint16 *usPort)
|
||||
{
|
||||
return ((ISteamUtils*)linux_side)->GetCSERIPPort((uint32 *)unIP, (uint16 *)usPort);
|
||||
}
|
||||
|
|
@ -67,7 +67,7 @@ void cppISteamUtils_SteamUtils009_SetOverlayNotificationPosition(void *linux_sid
|
|||
((ISteamUtils*)linux_side)->SetOverlayNotificationPosition((ENotificationPosition)eNotificationPosition);
|
||||
}
|
||||
|
||||
bool cppISteamUtils_SteamUtils009_IsAPICallCompleted(void *linux_side, SteamAPICall_t hSteamAPICall, bool * pbFailed)
|
||||
bool cppISteamUtils_SteamUtils009_IsAPICallCompleted(void *linux_side, SteamAPICall_t hSteamAPICall, bool *pbFailed)
|
||||
{
|
||||
return ((ISteamUtils*)linux_side)->IsAPICallCompleted((SteamAPICall_t)hSteamAPICall, (bool *)pbFailed);
|
||||
}
|
||||
|
|
@ -77,7 +77,7 @@ ESteamAPICallFailure cppISteamUtils_SteamUtils009_GetAPICallFailureReason(void *
|
|||
return ((ISteamUtils*)linux_side)->GetAPICallFailureReason((SteamAPICall_t)hSteamAPICall);
|
||||
}
|
||||
|
||||
bool cppISteamUtils_SteamUtils009_GetAPICallResult(void *linux_side, SteamAPICall_t hSteamAPICall, void * pCallback, int cubCallback, int iCallbackExpected, bool * pbFailed)
|
||||
bool cppISteamUtils_SteamUtils009_GetAPICallResult(void *linux_side, SteamAPICall_t hSteamAPICall, void *pCallback, int cubCallback, int iCallbackExpected, bool *pbFailed)
|
||||
{
|
||||
return ((ISteamUtils*)linux_side)->GetAPICallResult((SteamAPICall_t)hSteamAPICall, (void *)pCallback, (int)cubCallback, (int)iCallbackExpected, (bool *)pbFailed);
|
||||
}
|
||||
|
|
@ -108,12 +108,12 @@ bool cppISteamUtils_SteamUtils009_BOverlayNeedsPresent(void *linux_side)
|
|||
return ((ISteamUtils*)linux_side)->BOverlayNeedsPresent();
|
||||
}
|
||||
|
||||
SteamAPICall_t cppISteamUtils_SteamUtils009_CheckFileSignature(void *linux_side, const char * szFileName)
|
||||
SteamAPICall_t cppISteamUtils_SteamUtils009_CheckFileSignature(void *linux_side, const char *szFileName)
|
||||
{
|
||||
return ((ISteamUtils*)linux_side)->CheckFileSignature((const char *)szFileName);
|
||||
}
|
||||
|
||||
bool cppISteamUtils_SteamUtils009_ShowGamepadTextInput(void *linux_side, EGamepadTextInputMode eInputMode, EGamepadTextInputLineMode eLineInputMode, const char * pchDescription, uint32 unCharMax, const char * pchExistingText)
|
||||
bool cppISteamUtils_SteamUtils009_ShowGamepadTextInput(void *linux_side, EGamepadTextInputMode eInputMode, EGamepadTextInputLineMode eLineInputMode, const char *pchDescription, uint32 unCharMax, const char *pchExistingText)
|
||||
{
|
||||
return ((ISteamUtils*)linux_side)->ShowGamepadTextInput((EGamepadTextInputMode)eInputMode, (EGamepadTextInputLineMode)eLineInputMode, (const char *)pchDescription, (uint32)unCharMax, (const char *)pchExistingText);
|
||||
}
|
||||
|
|
@ -123,7 +123,7 @@ uint32 cppISteamUtils_SteamUtils009_GetEnteredGamepadTextLength(void *linux_side
|
|||
return ((ISteamUtils*)linux_side)->GetEnteredGamepadTextLength();
|
||||
}
|
||||
|
||||
bool cppISteamUtils_SteamUtils009_GetEnteredGamepadTextInput(void *linux_side, char * pchText, uint32 cchText)
|
||||
bool cppISteamUtils_SteamUtils009_GetEnteredGamepadTextInput(void *linux_side, char *pchText, uint32 cchText)
|
||||
{
|
||||
return ((ISteamUtils*)linux_side)->GetEnteredGamepadTextInput((char *)pchText, (uint32)cchText);
|
||||
}
|
||||
|
|
@ -173,7 +173,7 @@ bool cppISteamUtils_SteamUtils009_InitFilterText(void *linux_side)
|
|||
return ((ISteamUtils*)linux_side)->InitFilterText();
|
||||
}
|
||||
|
||||
int cppISteamUtils_SteamUtils009_FilterText(void *linux_side, char * pchOutFilteredText, uint32 nByteSizeOutFilteredText, const char * pchInputMessage, bool bLegalOnly)
|
||||
int cppISteamUtils_SteamUtils009_FilterText(void *linux_side, char *pchOutFilteredText, uint32 nByteSizeOutFilteredText, const char *pchInputMessage, bool bLegalOnly)
|
||||
{
|
||||
return ((ISteamUtils*)linux_side)->FilterText((char *)pchOutFilteredText, (uint32)nByteSizeOutFilteredText, (const char *)pchInputMessage, (bool)bLegalOnly);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue