Add include guards in wine/ddk/imm.h and inlude it from wine/imm.h

svn path=/trunk/; revision=48503
This commit is contained in:
Timo Kreuzer
2010-08-10 01:08:03 +00:00
parent a334719f12
commit 713d12fd47
2 changed files with 6 additions and 1 deletions
+5 -1
View File
@@ -1,6 +1,8 @@
#ifndef _WINE_IMM_H_
#define _WINE_IMM_H_
#include <psdk/wingdi.h>
#include <psdk/imm.h>
typedef struct _tagINPUTCONTEXT {
@@ -27,3 +29,5 @@ typedef struct _tagINPUTCONTEXT {
} INPUTCONTEXT, *LPINPUTCONTEXT;
LPINPUTCONTEXT WINAPI ImmLockIMC(HIMC);
#endif /* _WINE_IMM_H_ */
+1
View File
@@ -1 +1,2 @@
#include "ddk/imm.h"