Ignore:
Timestamp:
May 22, 2002, 5:50:26 PM (23 years ago)
Author:
sandervl
Message:

added debug wrappers (.def)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/winmm/time.cpp

    r7428 r8470  
    1 /* $Id: time.cpp,v 1.15 2001-11-22 15:40:46 phaller Exp $ */
     1/* $Id: time.cpp,v 1.16 2002-05-22 15:50:26 sandervl Exp $ */
    22
    33/*
     
    2626#include "dbglocal.h"
    2727
    28 ODINDEBUGCHANNEL(WINMM-TIME)
    29 
    3028
    3129/*****************************************************************************
     
    4240
    4341
    44 ODINFUNCTION0(UINT, mmsystemGetVersion)
     42UINT WINAPI mmsystemGetVersion()
    4543{
    4644  //Returned by winmm.dll from NT4, SP6
     
    6058 *****************************************************************************/
    6159
    62 ODINFUNCTION2(MMRESULT,   timeGetDevCaps,
    63               LPTIMECAPS, ptc,
    64               UINT,       cbtc)
     60MMRESULT WINAPI timeGetDevCaps(LPTIMECAPS ptc, UINT cbtc)
    6561{
    6662  dprintf(("WINMM:timeGetDevCaps Not really Implemented\n"));
     
    8985 *****************************************************************************/
    9086
    91 ODINFUNCTION1(MMRESULT, timeBeginPeriod,
    92               UINT,     cMilliseconds)
     87MMRESULT WINAPI timeBeginPeriod(UINT cMilliseconds)
    9388{
    9489  if (TRUE == OS2TimerResolution::enterResolutionScope(cMilliseconds))
     
    111106 *****************************************************************************/
    112107
    113 ODINFUNCTION1(MMRESULT, timeEndPeriod,
    114               UINT,     cMilliseconds)
     108MMRESULT WINAPI timeEndPeriod(UINT cMilliseconds)
    115109{
    116110  if (TRUE == OS2TimerResolution::leaveResolutionScope(cMilliseconds))
     
    136130 *****************************************************************************/
    137131
    138 ODINFUNCTION1(MMRESULT, timeKillEvent,
    139               UINT,     IDEvent)
     132MMRESULT WINAPI timeKillEvent(UINT IDEvent)
    140133{
    141134  OS2Timer *os2timer = NULL;
     
    165158 *****************************************************************************/
    166159
    167 ODINFUNCTION5(MMRESULT,       timeSetEvent,
    168               UINT,           wDelay,
    169               UINT,           wResolution,
    170               LPTIMECALLBACK, lptc,
    171               DWORD,          dwUser,
    172               UINT,           fuEvent)
     160MMRESULT WINAPI timeSetEvent(UINT wDelay, UINT wResolution,
     161                             LPTIMECALLBACK lptc, DWORD dwUser,
     162                             UINT fuEvent)
    173163{
    174164  OS2Timer *timer;
     
    259249 *****************************************************************************/
    260250
    261 ODINFUNCTION2(MMRESULT, timeGetSystemTime,
    262               LPMMTIME, pTime,
    263               UINT,     cbTime)
     251MMRESULT WINAPI timeGetSystemTime(LPMMTIME pTime, UINT cbTime)
    264252{
    265253  dprintf2(("timeGetSystemTime %x %d", pTime, cbTime));
Note: See TracChangeset for help on using the changeset viewer.