]> git.proxmox.com Git - grub2.git/blame - grub-core/osdep/windows/sleep.c
* grub-core/osdep/windows/sleep.c: Add missing config.h.
[grub2.git] / grub-core / osdep / windows / sleep.c
CommitLineData
c1ca4244
VS
1/*
2 * GRUB -- GRand Unified Bootloader
3 * Copyright (C) 2002,2003,2005,2006,2007,2008,2009,2010,2011,2012,2013 Free Software Foundation, Inc.
4 *
5 * GRUB is free software: you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation, either version 3 of the License, or
8 * (at your option) any later version.
9 *
10 * GRUB is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with GRUB. If not, see <http://www.gnu.org/licenses/>.
17 */
18
79f78fbf
VS
19#include <config-util.h>
20#include <config.h>
21
c1ca4244
VS
22#include <windows.h>
23#include <winioctl.h>
24#include <grub/time.h>
25
26void
27grub_millisleep (grub_uint32_t ms)
28{
29 Sleep (ms);
30}
31