Changed the first parameter from LPGUID (Windows headers) to REFGUID.
[wine] / include / dde_atom.h
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
12
13 #ifdef CONFIG_IPC
14
15 #include "windows.h"
16
17 #define DDE_ATOMS 157              /* a prime number for hashing */
18
19 void ATOM_GlobalInit(void);
20
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 );
25
26 #endif  /* CONFIG_IPC */
27
28 #endif __WINE_DDE_ATOM_H