Module: wine Branch: master Commit: d77c7d1047e61a765338c1d260a7d8bd359a2ad4 URL: http://source.winehq.org/git/wine.git/?a=commit;h=d77c7d1047e61a765338c1d260...
Author: Mariusz Pluciński vshader@gmail.com Date: Mon May 31 20:10:58 2010 +0200
gameux: Add declaration of IGameExplorer2 interface.
---
include/gameux.idl | 20 ++++++++++++++++++++ 1 files changed, 20 insertions(+), 0 deletions(-)
diff --git a/include/gameux.idl b/include/gameux.idl index 07b9870..f9ec1e5 100644 --- a/include/gameux.idl +++ b/include/gameux.idl @@ -138,6 +138,26 @@ library gameuxLib };
[ + 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) ] coclass GameExplorer