crypt32: Don't use off_t for memory offsets.

This commit is contained in:
Alexandre Julliard 2007-07-26 11:52:23 +02:00
parent 4dfdec2ef5
commit fd51447966
1 changed files with 1 additions and 1 deletions

View File

@ -1215,7 +1215,7 @@ struct DERSetDescriptor
DWORD cItems;
const void *items;
size_t itemSize;
off_t itemOffset;
size_t itemOffset;
CryptEncodeObjectExFunc encode;
};