PageSize in windows
System Admin
3
Posts
2
Posters
0
Views
1
Watching
-
Hi , Can anyone tell me what is the page size in windows memory management, in the paging and segmentation model of Window 98,2000 .. OS?
-
Hi , Can anyone tell me what is the page size in windows memory management, in the paging and segmentation model of Window 98,2000 .. OS?
-
Generally for Win32, it is 4096 bytes. However, you should determine it for a given platform by calling GetSystemInfo, which will fill in a SYSTEM_INFO structure for you. The page size is given by the dwPageSize value.
Steve S Developer for hire
Thanks a lot Mr Steve!