1266e564dSmrg/******************************************************************************
2266e564dSmrg
3266e564dSmrg
4266e564dSmrgCopyright 1993, 1998  The Open Group
5266e564dSmrg
6266e564dSmrgPermission to use, copy, modify, distribute, and sell this software and its
7266e564dSmrgdocumentation for any purpose is hereby granted without fee, provided that
8266e564dSmrgthe above copyright notice appear in all copies and that both that
9266e564dSmrgcopyright notice and this permission notice appear in supporting
10266e564dSmrgdocumentation.
11266e564dSmrg
12266e564dSmrgThe above copyright notice and this permission notice shall be included in
13266e564dSmrgall copies or substantial portions of the Software.
14266e564dSmrg
15266e564dSmrgTHE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16266e564dSmrgIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17266e564dSmrgFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL THE
18266e564dSmrgOPEN GROUP BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
19266e564dSmrgAN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
20266e564dSmrgCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
21266e564dSmrg
22266e564dSmrgExcept as contained in this notice, the name of The Open Group shall not be
23266e564dSmrgused in advertising or otherwise to promote the sale, use or other dealings
24266e564dSmrgin this Software without prior written authorization from The Open Group.
25266e564dSmrg
26266e564dSmrgAuthor: Ralph Mor, X Consortium
27266e564dSmrg******************************************************************************/
28266e564dSmrg
29266e564dSmrg#ifdef HAVE_CONFIG_H
30266e564dSmrg#include <config.h>
31266e564dSmrg#endif
32266e564dSmrg#include <X11/ICE/ICElib.h>
33266e564dSmrg#include "ICElibint.h"
34266e564dSmrg
35266e564dSmrg
36266e564dSmrg/*
37266e564dSmrg * NOT IMPLEMENTED YET
38266e564dSmrg */
39266e564dSmrg
40266e564dSmrg
41266e564dSmrgStatus
42c5629e66SmrgIceInitThreads (
43c5629e66Smrg	void
44c5629e66Smrg)
45266e564dSmrg{
46266e564dSmrg    return (0);
47266e564dSmrg}
48266e564dSmrg
49266e564dSmrg
50266e564dSmrgvoid
51c5629e66SmrgIceAppLockConn (
52c5629e66Smrg	IceConn	iceConn
53c5629e66Smrg)
54266e564dSmrg{
55266e564dSmrg    IceLockConn (iceConn);
56266e564dSmrg}
57266e564dSmrg
58266e564dSmrg
59266e564dSmrgvoid
60c5629e66SmrgIceAppUnlockConn (
61c5629e66Smrg	IceConn iceConn
62c5629e66Smrg)
63266e564dSmrg{
64266e564dSmrg    IceUnlockConn (iceConn);
65266e564dSmrg}
66