-
Notifications
You must be signed in to change notification settings - Fork 117
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
StgConvertPropertyToVariant
is missing
#1566
Comments
It was removed as part of #1547 since it depended on a C++ class PMemoryAllocator that was being emitted as an empty struct. C++ APIs are typically excluded. In this case, should a class like this be treated like a |
Ugh, the |
Am wondering if we should revisit this. And the function parameter is documented as
I recognize the headers still refer to abstract class class PMemoryAllocator
{
public:
virtual void *Allocate(ULONG cbSize) = 0;
virtual void Free(void *pv) = 0;
};
... |
Yes, even if the parameter is just declared as |
I don't see IMemoryAllocator in the metadata or headers. What is the full set of changes you want here? |
Propose we:
|
Tested the latest version of Win32/Wdk and this function has disappeared, blocking ingestion. Any ideas?
The text was updated successfully, but these errors were encountered: