Ignore:
Timestamp:
Sep 5, 2001, 3:39:12 PM (24 years ago)
Author:
bird
Message:

Added $Id:$ keyword.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/quartz/sysclock.c

    r6578 r6649  
     1/* $Id: sysclock.c,v 1.3 2001-09-05 13:36:38 bird Exp $ */
    12/*
    23 * Implementation of CLSID_SystemClock.
     
    3233HRESULT QUARTZ_CreateSystemClock(IUnknown* punkOuter,void** ppobj)
    3334{
    34         CSystemClock*   psc;
     35    CSystemClock*   psc;
    3536
    36         TRACE("(%p,%p)\n",punkOuter,ppobj);
     37    TRACE("(%p,%p)\n",punkOuter,ppobj);
    3738
    38         psc = (CSystemClock*)QUARTZ_AllocObj( sizeof(CSystemClock) );
    39         if ( psc == NULL )
    40                 return E_OUTOFMEMORY;
     39    psc = (CSystemClock*)QUARTZ_AllocObj( sizeof(CSystemClock) );
     40    if ( psc == NULL )
     41        return E_OUTOFMEMORY;
    4142
    42         QUARTZ_IUnkInit( &psc->unk, punkOuter );
    43         CSystemClock_InitIReferenceClock( psc );
     43    QUARTZ_IUnkInit( &psc->unk, punkOuter );
     44    CSystemClock_InitIReferenceClock( psc );
    4445
    45         psc->unk.pEntries = IFEntries;
    46         psc->unk.dwEntries = sizeof(IFEntries)/sizeof(IFEntries[0]);
     46    psc->unk.pEntries = IFEntries;
     47    psc->unk.dwEntries = sizeof(IFEntries)/sizeof(IFEntries[0]);
    4748
    48         *ppobj = (void*)(&psc->unk);
     49    *ppobj = (void*)(&psc->unk);
    4950
    50         return S_OK;
     51    return S_OK;
    5152}
Note: See TracChangeset for help on using the changeset viewer.