28 lines
357 B
C
28 lines
357 B
C
|
/*
|
||
|
* Atom table definitions
|
||
|
*
|
||
|
* Copyright 1993 Alexandre Julliard
|
||
|
*/
|
||
|
|
||
|
#ifndef ATOM_H
|
||
|
#define ATOM_H
|
||
|
|
||
|
#include "windows.h"
|
||
|
|
||
|
|
||
|
typedef struct
|
||
|
{
|
||
|
HANDLE next;
|
||
|
WORD refCount;
|
||
|
BYTE length;
|
||
|
BYTE str[1];
|
||
|
} ATOMENTRY;
|
||
|
|
||
|
typedef struct
|
||
|
{
|
||
|
WORD size;
|
||
|
HANDLE entries[1];
|
||
|
} ATOMTABLE;
|
||
|
|
||
|
#endif /* ATOM_H */
|