<html>
<head>
<style><!--
.hmmessage P
{
margin:0px;
padding:0px
}
body.hmmessage
{
font-size: 12pt;
font-family:Calibri
}
--></style></head>
<body class='hmmessage'><div dir='ltr'> TYPE FILETIME = RECORD<br> dwLowDateTime : uint32_t;<br> dwHighDateTime: uint32_t;<br> END;<br><br> BY_HANDLE_FILE_INFORMATION = RECORD<br> dwFileAttributes : uint32_t;<br> ftCreationTime : FILETIME; (* This should be at offset 4 but is 8 on 64bit systems. *)<br> (* the rest omitted *)<br> END;<br><br><br>Why doesn't that just work?<br>It works with:<br> TYPE FILETIME = BITS 64 FOR RECORD<br><br> <br> but imho it should work without that.<br><br> <br> - Jay<br><br><br> </div></body>
</html>