Release 0.6
[wine] / include / atom.h
1 /*
2  * Atom table definitions
3  *
4  * Copyright 1993 Alexandre Julliard
5  */
6
7 #ifndef ATOM_H
8 #define ATOM_H
9
10 #include "windows.h"
11
12
13 typedef struct
14 {
15     HANDLE      next;
16     WORD        refCount;
17     BYTE        length;
18     BYTE        str[1];
19 } ATOMENTRY;
20
21 typedef struct
22 {
23     WORD        size;
24     HANDLE      entries[1];
25 } ATOMTABLE;
26
27 #endif  /* ATOM_H */