Leaked source code of windows server 2003
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
/*++
Copyright (c) 1985 - 1999, Microsoft Corporation
Module Name:
immdevaw.h
Abstract:
This file defines the A/W structure for IMM.
Author:
Revision History:
Notes:
--*/
#ifndef _IMMDEVAW_H_
#define _IMMDEVAW_H_
/////////////////////////////////////////////////////////////////////////////
// LOGFONTA and LOGFONTW
typedef union { LOGFONTA A; LOGFONTW W; } LOGFONTAW;
/////////////////////////////////////////////////////////////////////////////
// CHAR and WCHAR
typedef union { char A; WCHAR W; } CHARAW;
/////////////////////////////////////////////////////////////////////////////
// IMEMENUITEMINFOA and IMEMENUITEMINFOW
typedef union { IMEMENUITEMINFOA A; IMEMENUITEMINFOW W; } IMEMENUITEMINFOAW;
#endif // _IMMDEVAW_H_
|