OSDN Git Service

Merge branch 'develop'
[strokestylet/CsWin10Desktop3.git] / StrokeStyleT / Win32.cs
1 using System;
2 using System.Collections.Generic;
3 using System.Diagnostics;
4 using System.Linq;
5
6 namespace SST
7 {
8         static class Win32
9         {
10                 [System.Runtime.InteropServices.DllImport( "winmm.dll", EntryPoint = "timeBeginPeriod" )]
11                 public static extern uint timeBeginPeriod( uint uMilliseconds );
12
13                 [System.Runtime.InteropServices.DllImport( "winmm.dll", EntryPoint = "timeEndPeriod" )]
14                 public static extern uint timeEndPeriod( uint uMilliseconds );
15         }
16 }