Anteckning
Åtkomst till den här sidan kräver auktorisering. Du kan prova att logga in eller ändra kataloger.
Åtkomst till den här sidan kräver auktorisering. Du kan prova att ändra kataloger.
Sets a break point on a particular line of code. (Used in debug mode only.)
Syntax
void _CrtDbgBreak( void );
Return value
There's no return value.
Remarks
The _CrtDbgBreak function sets a debug breakpoint on the particular line of code where the function resides. This function is used in debug mode only and is dependent on _DEBUG being previously defined.
For more information about using other hook-capable run-time functions and writing your own client-defined hook functions, see Writing your own debug hook functions.
Requirements
| Routine | Required header |
|---|---|
_CrtDbgBreak |
<CRTDBG.h> |
Libraries
Debug versions of C run-time libraries only.