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
17 #define DDE_ATOMS 157 /* a prime number for hashing */
19 void ATOM_GlobalInit(void);
21 ATOM
DDE_GlobalAddAtom( SEGPTR str
);
22 ATOM
DDE_GlobalDeleteAtom( ATOM atom
);
23 ATOM
DDE_GlobalFindAtom( SEGPTR str
);
24 WORD
DDE_GlobalGetAtomName( ATOM atom
, LPSTR buffer
, short count
);
26 #endif /* CONFIG_IPC */
28 #endif __WINE_DDE_ATOM_H