projects
/
wine
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
blame
|
history
|
raw
|
HEAD
Release 960902
[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
extern BOOL ATOM_Init(void);
13
14
typedef struct
15
{
16
HANDLE next;
17
WORD refCount;
18
BYTE length;
19
BYTE str[1];
20
} ATOMENTRY;
21
22
typedef struct
23
{
24
WORD size;
25
HANDLE entries[1];
26
} ATOMTABLE;
27
28
#endif /* ATOM_H */