Lines Matching defs:pReply
489 * Sets up pReply as the correct QueryFontReply for pFont with the first
492 * \param pReply caller must allocate this storage
495 QueryFont(FontPtr pFont, xQueryFontReply * pReply, int nProtoCCIStructs)
508 pReply->minCharOrByte2 = pFont->info.firstCol;
509 pReply->defaultChar = pFont->info.defaultCh;
510 pReply->maxCharOrByte2 = pFont->info.lastCol;
511 pReply->drawDirection = pFont->info.drawDirection;
512 pReply->allCharsExist = pFont->info.allExist;
513 pReply->minByte1 = pFont->info.firstRow;
514 pReply->maxByte1 = pFont->info.lastRow;
515 pReply->fontAscent = pFont->info.fontAscent;
516 pReply->fontDescent = pFont->info.fontDescent;
518 pReply->minBounds = pFont->info.ink_minbounds;
519 pReply->maxBounds = pFont->info.ink_maxbounds;
521 pReply->nFontProps = pFont->info.nprops;
522 pReply->nCharInfos = nProtoCCIStructs;
524 for (i = 0, pFP = pFont->info.props, prFP = (xFontProp *) (&pReply[1]);