cmTimeLine.h/c : Added cmTimeLinePrefixPath().

This commit is contained in:
Kevin Larke 2015-02-25 16:59:06 -08:00
부모 15a0c7beeb
커밋 857dae7646
2개의 변경된 파일7개의 추가작업 그리고 0개의 파일을 삭제

파일 보기

@ -949,6 +949,12 @@ const cmChar_t* cmTimeLineFileName( cmTlH_t h )
return p->filename;
}
const cmChar_t* cmTimeLinePrefixPath( cmTlH_t h )
{
_cmTl_t* p = _cmTlHandleToPtr(h);
return p->prefixPath;
}
cmTlRC_t cmTimeLineFinalize( cmTlH_t* hp )
{
cmTlRC_t rc;

파일 보기

@ -122,6 +122,7 @@ extern "C" {
cmTlRC_t cmTimeLineInitializeFromFile( cmCtx_t* ctx, cmTlH_t* hp, cmTlCb_t cbFunc, void* cbArg, const cmChar_t* fn, const cmChar_t* prefixPath );
const cmChar_t* cmTimeLineFileName( cmTlH_t h );
const cmChar_t* cmTimeLinePrefixPath( cmTlH_t h );
cmTlRC_t cmTimeLineFinalize( cmTlH_t* hp );