Author: tkreuzer Date: Sun Oct 4 02:04:38 2009 New Revision: 43278
URL: http://svn.reactos.org/svn/reactos?rev=43278&view=rev Log: use __debugbreak() insetad of EngDebugBreak() dedicated to Alex
Modified: trunk/reactos/drivers/video/font/bmfd/font.c trunk/reactos/drivers/video/font/bmfd/glyph.c trunk/reactos/drivers/video/font/ftfd/enable.c trunk/reactos/drivers/video/font/ftfd/font.c
Modified: trunk/reactos/drivers/video/font/bmfd/font.c URL: http://svn.reactos.org/svn/reactos/trunk/reactos/drivers/video/font/bmfd/fon... ============================================================================== --- trunk/reactos/drivers/video/font/bmfd/font.c [iso-8859-1] (original) +++ trunk/reactos/drivers/video/font/bmfd/font.c [iso-8859-1] Sun Oct 4 02:04:38 2009 @@ -247,7 +247,7 @@ ULONG cjView;
DbgPrint("BmfdLoadFontFile()\n"); - EngDebugBreak(); + __debugbreak();
/* Check parameters */ if (cFiles != 1) @@ -323,7 +323,7 @@ PBMFD_FILE pfile = (PBMFD_FILE)iFile;
DbgPrint("BmfdQueryFontFile()\n"); -// EngDebugBreak(); +// __debugbreak();
switch (ulMode) { @@ -397,7 +397,7 @@ HGLYPH * phglyphs;
DbgPrint("DrvQueryFontTree(iMode=%ld)\n", iMode); -// EngDebugBreak(); +// __debugbreak();
/* Check parameters, we only support QFT_GLYPHSET */ if (!iFace || iFace > pfile->cNumFaces || iMode != QFT_GLYPHSET) @@ -522,7 +522,7 @@ PANOSE panose = {0};
DbgPrint("BmfdQueryFont()\n"); -// EngDebugBreak(); +// __debugbreak();
/* Validate parameters */ if (iFace > pfile->cNumFaces || !pid)
Modified: trunk/reactos/drivers/video/font/bmfd/glyph.c URL: http://svn.reactos.org/svn/reactos/trunk/reactos/drivers/video/font/bmfd/gly... ============================================================================== --- trunk/reactos/drivers/video/font/bmfd/glyph.c [iso-8859-1] (original) +++ trunk/reactos/drivers/video/font/bmfd/glyph.c [iso-8859-1] Sun Oct 4 02:04:38 2009 @@ -331,7 +331,7 @@
DbgPrint("BmfdQueryFontData(pfo=%p, iMode=%ld, hg=%p, pgd=%p, pv=%p, cjSize=%ld)\n", pfo, iMode, hg, pgd, pv, cjSize); -// EngDebugBreak(); +// __debugbreak();
switch (iMode) {
Modified: trunk/reactos/drivers/video/font/ftfd/enable.c URL: http://svn.reactos.org/svn/reactos/trunk/reactos/drivers/video/font/ftfd/ena... ============================================================================== --- trunk/reactos/drivers/video/font/ftfd/enable.c [iso-8859-1] (original) +++ trunk/reactos/drivers/video/font/ftfd/enable.c [iso-8859-1] Sun Oct 4 02:04:38 2009 @@ -77,7 +77,7 @@ IN HANDLE hDriver) { DbgPrint("FtfdEnablePDEV(hdev=%p)\n", hdev); - EngDebugBreak(); + __debugbreak();
/* Return a dummy DHPDEV */
Modified: trunk/reactos/drivers/video/font/ftfd/font.c URL: http://svn.reactos.org/svn/reactos/trunk/reactos/drivers/video/font/ftfd/fon... ============================================================================== --- trunk/reactos/drivers/video/font/ftfd/font.c [iso-8859-1] (original) +++ trunk/reactos/drivers/video/font/ftfd/font.c [iso-8859-1] Sun Oct 4 02:04:38 2009 @@ -145,7 +145,7 @@ PFTFD_FILE pfile = (PFTFD_FILE)iFile;
DbgPrint("FtfdQueryFontFile(ulMode=%ld)\n", ulMode); -// EngDebugBreak(); +// __debugbreak();
switch (ulMode) { @@ -322,7 +322,7 @@ FT_Done_Face(ftface);
DbgPrint("Finished with the ifi: %p\n", pifiX); - EngDebugBreak(); + __debugbreak();
return pifi; } @@ -469,7 +469,7 @@ *pid = (ULONG_PTR)pGlyphSet;
DbgPrint("pGlyphSet=%p\n", pGlyphSet); -EngDebugBreak(); +__debugbreak();
return pGlyphSet; }