RemoteDrawingEngine: Reduce RP_READ_BITMAP result timeout.
[haiku.git] / src / kits / locale / cat.cpp
blob610b2cc9e4b4248dc030a74eb063d3107ecb829e
1 /*
2 ** Copyright 2003, Axel Dörfler, axeld@pinc-software.de. All rights reserved.
3 ** Distributed under the terms of the MIT License.
4 */
7 #include <nl_types.h>
10 nl_catd
11 catopen(const char *name, int oflag)
13 return (nl_catd)1;
17 char *
18 catgets(nl_catd cat, int setID, int msgID, const char *defaultMessage)
20 // should return "const char *"...
21 return const_cast<char *>(defaultMessage);
25 int
26 catclose(nl_catd)
28 return 0;