1 /***************************************************************************
2 * Copyright 1995, Technion, Israel Institute of Technology
3 * Electrical Eng, Software Lab.
4 * Author: Michael Veksler.
5 ***************************************************************************
7 * Purpose : atom functionality for DDE
8 ***************************************************************************
10 #ifndef __WINE_DDE_ATOM_H
11 #define __WINE_DDE_ATOM_H
14 #define DDE_ATOMS 157 /* a prime number for hashing */
16 void ATOM_GlobalInit(void);
18 ATOM GlobalAddAtom( LPCSTR str );
19 ATOM GlobalDeleteAtom( ATOM atom );
20 ATOM GlobalFindAtom( LPCSTR str );
21 WORD GlobalGetAtomName( ATOM atom, LPSTR buffer, short count )
23 #endif __WINE_DDE_ATOM_H