1
0
mirror of https://github.com/wine-mirror/wine synced 2024-07-08 20:06:18 +00:00

gameux: Add declaration of IGameExplorer2 interface.

This commit is contained in:
Mariusz Pluciński 2010-05-31 20:10:58 +02:00 committed by Alexandre Julliard
parent 10a5414afe
commit d77c7d1047

View File

@ -137,6 +137,26 @@ library gameuxLib
[string, in] LPCWSTR GDFBinaryPath);
};
[
object,
uuid(86874AA7-A1ED-450d-A7EB-B89E20B2FFF3)
]
interface IGameExplorer2 : IUnknown
{
HRESULT InstallGame(
[string, in] LPCWSTR binaryGDFPath,
[unique, in] LPCWSTR installDirectory,
[in] GAME_INSTALL_SCOPE installScope);
HRESULT UninstallGame(
[string, in] LPCWSTR binaryGDFPath);
HRESULT CheckAccess(
[string, in] LPCWSTR binaryGDFPath,
[retval, out] BOOL* pHasAccess);
}
[
uuid(9A5EA990-3034-4D6F-9128-01F3C61022BC)
]