dbghelp: Fix the spelling and tweak the wording of a comment.
Signed-off-by: Francois Gouget <fgouget@free.fr> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
26ff79c37d
commit
9be9c32781
|
@ -66,10 +66,11 @@ int __cdecl symt_cmp_addr(const void* p1, const void* p2)
|
||||||
|
|
||||||
/* dbghelp exposes the internal symbols/types with DWORD indexes.
|
/* dbghelp exposes the internal symbols/types with DWORD indexes.
|
||||||
* - custom symbols are always stored with index starting at BASE_CUSTOM_SYMT
|
* - custom symbols are always stored with index starting at BASE_CUSTOM_SYMT
|
||||||
* - for all the others (non custom) symbols:
|
* - for all the other (non custom) symbols:
|
||||||
* + on 32bit machine, index is set to the actual adress of symt
|
* + on 32-bit machines, index is set to the actual address of symt
|
||||||
* + on 64bit machine, we have a dedicated array to store symt exposed to caller
|
* + on 64-bit machines, the symt address is stored in a dedicated array
|
||||||
* index is the index in this array of the symbol
|
* which is exposed to the caller and index is the index of the symbol in
|
||||||
|
* this array
|
||||||
*/
|
*/
|
||||||
DWORD symt_ptr2index(struct module* module, const struct symt* sym)
|
DWORD symt_ptr2index(struct module* module, const struct symt* sym)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue