Fixed IObject::AddRef c interface
assiduous
3 years ago
108 | 108 | // clang-format off |
109 | 109 | |
110 | 110 | # define IObject_QueryInterface(This, ...) (This)->pVtbl->Object.QueryInterface((struct IObject*)(This), __VA_ARGS__) |
111 | # define IObject_AddRef(This, ...) (This)->pVtbl->Object.AddRef ((struct IObject*)(This), __VA_ARGS__) | |
111 | # define IObject_AddRef(This) (This)->pVtbl->Object.AddRef ((struct IObject*)(This)) | |
112 | 112 | # define IObject_Release(This) (This)->pVtbl->Object.Release ((struct IObject*)(This)) |
113 | 113 | |
114 | 114 | // clang-format on |