Vincent Povirk madewokherd@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.
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@baikal.ru wrote:
Vincent Povirk madewokherd@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@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.