projects
/
wine
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
blame
|
history
|
raw
|
HEAD
Release 971012
[wine]
/
include
/
atom.h
1
/*
2
* Atom table definitions
3
*
4
* Copyright 1993 Alexandre Julliard
5
*/
6
7
#ifndef __WINE_ATOM_H
8
#define __WINE_ATOM_H
9
10
#include "windows.h"
11
12
extern BOOL32 ATOM_Init(void);
13
14
typedef struct
15
{
16
HANDLE16 next;
17
WORD refCount;
18
BYTE length;
19
BYTE str[1];
20
} ATOMENTRY;
21
22
typedef struct
23
{
24
WORD size;
25
HANDLE16 entries[1];
26
} ATOMTABLE;
27
28
#endif /* __WINE_ATOM_H */