作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我需要使用 kernel32 的 SetFilePointer 函数来读取磁盘的一个扇区,该扇区的地址包含在一个 double 中以解决大小问题。
我知道 ReadFile 函数接受 loword as long 和 hiword 作为 long 参数,但我无法将我的双地址拆分为两个字。
我尝试了几种使用 Mod 和 Fix 的方法,但最后我只有溢出错误。
LoWord = CLng(dNum Mod CDbl(4294967295)) 'Dont care the number I use, I always get overflow error
LoWord = CLng(FMod(dNum, 4294967295#))
HiWord = CLng(dNum - (FMod(dNum, 4294967295#))) 'tryed different number to see the behaviour, don't care
Public Function FMod(a As Double, b As Double) As Double
FMod = a - Fix(a / b) * b
'http://en.wikipedia.org/wiki/Machine_epsilon
'Unfortunately, this function can only be accurate when `a / b` is outside [-2.22E-16,+2.22E-16]
'Without this correction, FMod(.66, .06) = 5.55111512312578E-17 when it should be 0
If FMod >= -2 ^ -52 And FMod <= 2 ^ -52 Then '+/- 2.22E-16
FMod = 0
End If
End Function
Call SetFilePointer(hDevice, iStartSec * BytesPerSector, 0, FILE_BEGIN)
Private Type TKK_Dbl
Value As Double
End Type
Private Type Dbl2Long
LowVal As Long
HighVal As Long
End Type
Private D As TKK_Dbl
Private L As Dbl2Long
D.Value = CDbl(iStartSec) * CDbl(BytesPerSector)
LSet L = D
Call SetFilePointer(hDevice, L.LowVal, L.HighVal, FILE_BEGIN)
最佳答案
根据你的编辑,我做了一些谷歌搜索,看看是否有一个 Win API 来做左移,因为乘以 512 只是按位左移 9。
我遇到了 RtlLargeIntegerShiftLeft 可以做到这一点(在这里找到 https://docs.microsoft.com/en-us/windows-hardware/drivers/kernel/rtlenlargedintegermultiply)。
接下来,为了节省您一些时间,我找到了使用它的声明的 VB6 示例(此处: http://www.xbeat.net/vbspeed/c_ShiftLeft.htm )
Private Type LARGEINT
Long1 As Long
Long2 As Long
End Type
Private Declare Function RLIShiftLeft Lib "ntdll" Alias "RtlLargeIntegerShiftLeft" _
(ByVal Val1 As Long, ByVal Val2 As Long, ByVal ShiftCount As Long) As LARGEINT
关于vb6 - 在 VB6 中将 Double 拆分为 Long loword 和 Long hiword,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58154714/
我是一名优秀的程序员,十分优秀!