mirror of
https://github.com/ValveSoftware/Proton.git
synced 2025-06-12 13:17:50 +02:00
Perform conversion between more lin/win paths
This commit is contained in:
@ -788,6 +788,23 @@ void cb_DeleteItemResult_t_16(const void *l, void *w)
|
||||
win->m_nPublishedFileId = lin->m_nPublishedFileId;
|
||||
}
|
||||
|
||||
#pragma pack( push, 8 )
|
||||
struct winHTML_FileOpenDialog_t_12 {
|
||||
HHTMLBrowser unBrowserHandle;
|
||||
const char * pchTitle;
|
||||
const char * pchInitialFile;
|
||||
} __attribute__ ((ms_struct));
|
||||
#pragma pack( pop )
|
||||
void cb_HTML_FileOpenDialog_t_12(const void *l, void *w)
|
||||
{
|
||||
HTML_FileOpenDialog_t *lin = (HTML_FileOpenDialog_t *)l;
|
||||
struct winHTML_FileOpenDialog_t_12 *win = (struct winHTML_FileOpenDialog_t_12 *)w;
|
||||
win->unBrowserHandle = lin->unBrowserHandle;
|
||||
win->pchTitle = lin->pchTitle;
|
||||
steamclient_unix_path_to_dos_path(1, lin->pchInitialFile, g_tmppath, sizeof(g_tmppath));
|
||||
win->pchInitialFile = g_tmppath;
|
||||
}
|
||||
|
||||
#pragma pack( push, 8 )
|
||||
struct winSteamInventoryStartPurchaseResult_t_24 {
|
||||
EResult m_result;
|
||||
|
Reference in New Issue
Block a user