mirror of https://github.com/tongzx/nt5src
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
52 lines
1.1 KiB
52 lines
1.1 KiB
/*++
|
|
|
|
Copyright (c) 2000 Microsoft Corporation
|
|
|
|
Module Name:
|
|
|
|
SecName.cxx
|
|
|
|
Abstract:
|
|
|
|
Function(s) for manipulating the section name
|
|
|
|
Author:
|
|
|
|
Kamen Moutafov (kamenm) Dec 99 - Feb 2000
|
|
|
|
Revision History:
|
|
|
|
--*/
|
|
|
|
#include <precomp.hxx>
|
|
|
|
void GenerateSectionName(OUT RPC_CHAR *Buffer, IN int BufferLength,
|
|
IN DWORD ProcessID, IN DWORD *pSectionNumbers OPTIONAL)
|
|
{
|
|
RPC_CHAR *CurrentPosition;
|
|
|
|
ASSERT(BufferLength >= RpcSectionNameMaxSize);
|
|
|
|
RpcpStringCopy(Buffer, RpcSectionPrefix);
|
|
CurrentPosition = Buffer + RpcSectionPrefixSize;
|
|
|
|
// add the PID
|
|
_ultow(ProcessID, CurrentPosition, 16);
|
|
|
|
if (pSectionNumbers)
|
|
{
|
|
// find the end of the conversion
|
|
while (*CurrentPosition != 0)
|
|
CurrentPosition ++;
|
|
|
|
// add the first portion of the section number
|
|
_ultow(pSectionNumbers[0], CurrentPosition, 16);
|
|
// find the end of the conversion
|
|
while (*CurrentPosition != 0)
|
|
CurrentPosition ++;
|
|
|
|
// add the second portion of the section number
|
|
_ultow(pSectionNumbers[1], CurrentPosition, 16);
|
|
}
|
|
}
|
|
|