Added missing #include "config.h"
[wine/multimedia.git] / include / dde_atom.h
blobdcc0e84de3c34e9375d9c7365f12ec3ab9ae958d
1 /***************************************************************************
2 * Copyright 1995, Technion, Israel Institute of Technology
3 * Electrical Eng, Software Lab.
4 * Author: Michael Veksler.
5 ***************************************************************************
6 * File: dde_atom.h
7 * Purpose : atom functionality for DDE
8 ***************************************************************************
9 */
10 #ifndef __WINE_DDE_ATOM_H
11 #define __WINE_DDE_ATOM_H
13 #ifdef CONFIG_IPC
15 #include "windows.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