Changes between Version 7 and Version 8 of Windows的な問題


Ignore:
Timestamp:
Apr 30, 2006, 1:22:50 PM (18 years ago)
Author:
rryu
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Windows的な問題

    v7 v8  
    1010 * NtQuerySystemInformation()
    1111 * プロトタイプ宣言とかはPlatform SDKのwinternl.hあたりにあるらしい
     12{{{
     13#define SYSTEMCACHEINFORMATION 0x15
     14
     15typedef struct {
     16        ULONG           CurrentSize;
     17        ULONG           PeakSize;
     18        ULONG           PageFaultCount;
     19        ULONG           MinimumWorkingSet;
     20        ULONG           MaximumWorkingSet;
     21        ULONG           Unused[4];
     22} SYSTEM_CACHE_INFORMATION;
     23}}}
     24
     25SystemPerformanceInformation(0x02)の方がイケてる?
     26ULONG MmSystemCachePageという情報がある。
     27
    1228
    1329参考:
     
    1531 * http://d.hatena.ne.jp/torutk/20050612
    1632 * http://www.atmarkit.co.jp/bbs/phpBB/viewtopic.php?topic=28456&forum=7&7
     33 * http://cvs.sourceforge.net/viewcvs.py/mingw/w32api/include/ddk/ntapi.h?rev=1.6