Created
August 27, 2020 03:02
-
-
Save Tocchann/6575ceb6d32b4d567da2b7c025049697 to your computer and use it in GitHub Desktop.
IUnknown の IDL上の定義(cpp_quote除外版)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ | |
local, | |
object, | |
uuid(00000000-0000-0000-C000-000000000046), | |
pointer_default(unique) | |
] | |
interface IUnknown | |
{ | |
typedef [unique] IUnknown *LPUNKNOWN; | |
HRESULT QueryInterface( [in] REFIID riid, [out, iid_is(riid), annotation("_COM_Outptr_")] void **ppvObject ); | |
ULONG AddRef(); | |
ULONG Release(); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment