|
IsBadWritePtr The IsBadWritePtr function verifies that the calling process has write access to the specified range of memory. VB4-32,5,6 Declare Function IsBadWritePtr Lib "kernel32" (ByVal lp As Long, ByVal ucb As Long) As Long |
Operating Systems Supported |
Requires Windows NT 3.1 or later; Requires Windows 95 or later |
· lp [in] Pointer to the first byte of the memory block.
· ucb [in] Specifies the size, in bytes, of the memory block. If this parameter is zero, the return value is zero. |
If the calling process has write access to all bytes in the specified memory range, the return value is zero. If the calling process does not have write access to all bytes in the specified memory range, the return value is nonzero. If the application is compiled as a debugging version, and the process does not have write access to all bytes in the specified memory range, the function causes an assertion and breaks into the debugger. Leaving the debugger, the function continues as usual, and returns a nonzero value This behavior is by design, as a debugging aid. |
|
|
|