mirror of
https://github.com/php/php-src.git
synced 2025-08-16 05:58:45 +02:00
Fix signature of callback function
Cf. <https://docs.microsoft.com/en-us/windows/win32/api/imagehlp/nc-imagehlp-pimagehlp_status_routine>.
This commit is contained in:
parent
7e87173497
commit
2538e31b58
1 changed files with 2 additions and 2 deletions
|
@ -22,8 +22,8 @@
|
|||
#include <imagehlp.h>
|
||||
|
||||
BOOL CALLBACK StatusRoutine(IMAGEHLP_STATUS_REASON reason,
|
||||
PSTR image_name, PSTR dll_name,
|
||||
ULONG va, ULONG param)
|
||||
PCSTR image_name, PCSTR dll_name,
|
||||
ULONG_PTR va, ULONG_PTR param)
|
||||
{
|
||||
switch (reason) {
|
||||
case BindImportModuleFailed:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue