Austin English austinenglish@gmail.com wrote:
-422 stub OleLoadPictureFile +422 stdcall OleLoadPictureFile(long ptr)
...
+HRESULT WINAPI OleLoadPictureFile(VARIANT file, LPDISPATCH *picture) +{
- FIXME("(%p),stub!\n", picture);
- return E_NOTIMPL;
+}
Is passing VARIANT by value supposed to be represented like this in a .spec file?
On Thu, Mar 24, 2016 at 11:17:08AM +0800, Dmitry Timoshkov wrote:
Austin English austinenglish@gmail.com wrote:
-422 stub OleLoadPictureFile +422 stdcall OleLoadPictureFile(long ptr)
...
+HRESULT WINAPI OleLoadPictureFile(VARIANT file, LPDISPATCH *picture) +{
- FIXME("(%p),stub!\n", picture);
- return E_NOTIMPL;
+}
Is passing VARIANT by value supposed to be represented like this in a .spec file?
I think it is is tricky to represent.
https://webcache.googleusercontent.com/search?q=cache:dYriaKiafRIJ:www.masmf...
We would need to specify as much longs as the variant struct is wide for the relay debugging to be correct :/
Ciao, Marcus