Desktop Functions: Smart Device Functions:
|
QueryPerformanceFrequency (coredll)
coredll is for smart devices, not desktop Windows. Therefore, this information only applies to code using the .NET Compact Framework. To see if information for QueryPerformanceFrequency in other DLLs exists, click on Find References to the right. C# Signature:
[DllImport("coredll.dll", SetLastError=true)] User-Defined Types:None. Notes:None. Tips & Tricks:Please add some! Sample Code:/// <summary> /// Queries the performance frequency. /// </summary> /// <param name="freq">The frequency used by this highly robust measurement counter</param> /// <returns>A boolean indicating success or failure</returns> [DllImport("Kernel32.dll")] public static extern bool QueryPerformanceFrequency(out long freq); Alternative Managed API:Do you know one? Please contribute it! Please edit this page!Do you have...
Select "Edit This Page" on the right hand toolbar and edit it! Or add new pages containing supporting types needed for this API (structures, delegates, and more). |
|