Added missing windef.h includes.

This commit is contained in:
Michael Veksler 1999-04-15 16:41:04 +00:00 committed by Alexandre Julliard
parent 007f1335c1
commit 759e607ce4
2 changed files with 4 additions and 0 deletions

View file

@ -5,6 +5,8 @@
#ifndef __WINE_DRIVER_H
#define __WINE_DRIVER_H
#include "windef.h"
#define DRV_LOAD 0x0001
#define DRV_ENABLE 0x0002
#define DRV_OPEN 0x0003

View file

@ -1,6 +1,8 @@
#ifndef _KEYBOARD16_H
#define _KEYBOARD16_H
#include "windef.h"
INT16 WINAPI ToAscii16(UINT16,UINT16,LPBYTE,LPVOID,UINT16);
WORD WINAPI VkKeyScan16(CHAR);
INT16 WINAPI AnsiToOem16(LPCSTR,LPSTR);