Changeset 21302 for trunk/src/kernel32/hmdevio.cpp
- Timestamp:
- Jun 18, 2009, 11:53:26 AM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/kernel32/hmdevio.cpp
r9533 r21302 27 27 #include <win\winioctl.h> 28 28 #include "hmdevio.h" 29 #include "map.h"30 29 #include "exceptutil.h" 31 30 #include "oslibdos.h" … … 471 470 QWORD time; 472 471 APIRET rc; 473 472 #if 0 473 return FALSE; 474 #else 474 475 rc = DosTmrQueryTime(&time); 475 476 if(rc) { … … 479 480 lpPerformanceCount->u.LowPart = time.ulLo; 480 481 lpPerformanceCount->u.HighPart = time.ulHi; 482 dprintf2(("QueryPerformanceCounter returned 0x%X%X\n", lpPerformanceCount->u.HighPart, lpPerformanceCount->u.LowPart)); 481 483 return(TRUE); 484 #endif 482 485 } 483 486 //****************************************************************************** … … 488 491 ULONG freq; 489 492 493 #if 0 494 return FALSE; 495 #else 490 496 rc = DosTmrQueryFreq(&freq); 491 497 if(rc) { … … 497 503 dprintf2(("QueryPerformanceFrequency returned 0x%X%X\n", lpFrequency->u.HighPart, lpFrequency->u.LowPart)); 498 504 return(TRUE); 499 } 500 //****************************************************************************** 501 //****************************************************************************** 505 #endif 506 } 507 //****************************************************************************** 508 //******************************************************************************
Note:
See TracChangeset
for help on using the changeset viewer.