mirror of
https://github.com/reactos/reactos.git
synced 2025-08-03 17:56:00 +00:00
Use LONG BreakPointNr, as in other breakpoint-related functions
svn path=/trunk/; revision=33437
This commit is contained in:
parent
a3417a72ad
commit
117852d238
2 changed files with 4 additions and 4 deletions
|
@ -540,7 +540,7 @@ KdbpInsertBreakPoint(
|
|||
IN KDB_ACCESS_TYPE AccessType OPTIONAL,
|
||||
IN PCHAR ConditionExpression OPTIONAL,
|
||||
IN BOOLEAN Global,
|
||||
OUT PULONG BreakPointNumber OPTIONAL)
|
||||
OUT PLONG BreakPointNr OPTIONAL)
|
||||
{
|
||||
LONG i;
|
||||
PVOID Condition;
|
||||
|
@ -636,8 +636,8 @@ KdbpInsertBreakPoint(
|
|||
KdbpEnableBreakPoint(i, NULL);
|
||||
|
||||
/* Return the breakpoint number */
|
||||
if (BreakPointNumber != NULL)
|
||||
*BreakPointNumber = i;
|
||||
if (BreakPointNr != NULL)
|
||||
*BreakPointNr = i;
|
||||
|
||||
return STATUS_SUCCESS;
|
||||
}
|
||||
|
|
|
@ -196,7 +196,7 @@ KdbpInsertBreakPoint(
|
|||
IN KDB_ACCESS_TYPE AccessType OPTIONAL,
|
||||
IN PCHAR ConditionExpression OPTIONAL,
|
||||
IN BOOLEAN Global,
|
||||
OUT PULONG BreakPointNumber OPTIONAL);
|
||||
OUT PLONG BreakPointNr OPTIONAL);
|
||||
|
||||
BOOLEAN
|
||||
KdbpDeleteBreakPoint(
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue