Browse Source

Fix JackSleep declaration on Windows.

git-svn-id: http://subversion.jackaudio.org/jack/jack2/trunk/jackmp@3079 0c269be4-1314-0410-8aa9-9f06e86f4224
tags/1.9.1
sletz 16 years ago
parent
commit
0241cd57c0
1 changed files with 2 additions and 5 deletions
  1. +2
    -5
      windows/JackWinTime.c

+ 2
- 5
windows/JackWinTime.c View File

@@ -18,16 +18,13 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.

*/

#if defined(HAVE_CONFIG_H)
#include "config.h"
#endif

#include <windows.h>
#include "JackTime.h"
#include "JackError.h"

static LARGE_INTEGER _jack_freq;

SERVER_EXPORT JackSleep(long usec)
SERVER_EXPORT void JackSleep(long usec)
{
Sleep(usec / 1000);
}


Loading…
Cancel
Save