Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches

◆ SystemPageSize

int System.Environment.SystemPageSize
staticget

Definition at line 336 of file Environment.cs.

337 {
338 get
339 {
340 Interop.Kernel32.GetSystemInfo(out var lpSystemInfo);
341 return lpSystemInfo.dwPageSize;
342 }
343 }
static void GetSystemInfo(out SYSTEM_INFO lpSystemInfo)