blob: 78a4a15ddf1f1e9ac42e419d43f06585742ea2c9 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
/*++ BUILD Version: 0001
*
* WOW v1.0
*
* Copyright (c) 1992, Microsoft Corporation
*
* WOWINT.H
* 16-bit Internal API argument structures
*
* History:
* Created 22-Apr-1992 by FritzS
*
--*/
#define FUN_SETTABLE 0 //
/* XLATOFF */
#pragma pack(2)
/* XLATON */
typedef struct _WOWSETTABLE16 { /* i0 */
VPSZ f1;
} WOWSETTABLE16, *PWOWSETTABLE16;
/* XLATOFF */
#pragma pack()
/* XLATON */
|