Re: winedump: Add basic support for dumping the property store in lnk files.
Vincent Povirk <madewokherd(a)gmail.com> wrote:
+typedef struct tagLINK_PROPERTYSTORAGE_VALUE +{ + DWORD size; + DWORD pid; + BYTE unknown8; + DWORD vt; + DWORD unknown25; +} LINK_PROPERTYSTORAGE_VALUE;
You probably need an appropriate packing for this structure. -- Dmitry.
Yes, there's already a #include "pshpack1.h" around this part of the file. On Thu, Apr 5, 2012 at 10:58 PM, Dmitry Timoshkov <dmitry(a)baikal.ru> wrote:
Vincent Povirk <madewokherd(a)gmail.com> wrote:
+typedef struct tagLINK_PROPERTYSTORAGE_VALUE +{ + DWORD size; + DWORD pid; + BYTE unknown8; + DWORD vt; + DWORD unknown25; +} LINK_PROPERTYSTORAGE_VALUE;
You probably need an appropriate packing for this structure.
-- Dmitry.
Vincent Povirk <madewokherd(a)gmail.com> wrote:
Yes, there's already a #include "pshpack1.h" around this part of the file.
Ah, sorry, should have looked at the target file before commenting. -- Dmitry.
participants (2)
-
Dmitry Timoshkov -
Vincent Povirk