VirtualBox

source: vbox/trunk/src/VBox/Additions/WINNT/Graphics/Wine/include/msvcrt/search.h@ 16477

Last change on this file since 16477 was 16477, checked in by vboxsync, 16 years ago

LGPL disclaimer by filemuncher

  • Property svn:eol-style set to native
File size: 2.7 KB
Line 
1/*
2 * Heap definitions
3 *
4 * Copyright 2001 Francois Gouget.
5 *
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2.1 of the License, or (at your option) any later version.
10 *
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
15 *
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
19 */
20
21/*
22 * Sun LGPL Disclaimer: For the avoidance of doubt, except that if any license choice
23 * other than GPL or LGPL is available it will apply instead, Sun elects to use only
24 * the Lesser General Public License version 2.1 (LGPLv2) at this time for any software where
25 * a choice of LGPL license versions is made available with the language indicating
26 * that LGPLv2 or any later version may be used, or where a choice of which version
27 * of the LGPL is applied is otherwise unspecified.
28 */
29#ifndef __WINE_SEARCH_H
30#define __WINE_SEARCH_H
31#ifndef __WINE_USE_MSVCRT
32#define __WINE_USE_MSVCRT
33#endif
34
35#if defined(__x86_64__) && !defined(_WIN64)
36#define _WIN64
37#endif
38
39#if !defined(_MSC_VER) && !defined(__int64)
40# ifdef _WIN64
41# define __int64 long
42# else
43# define __int64 long long
44# endif
45#endif
46
47#ifndef _SIZE_T_DEFINED
48#ifdef _WIN64
49typedef unsigned __int64 size_t;
50#else
51typedef unsigned int size_t;
52#endif
53#define _SIZE_T_DEFINED
54#endif
55
56
57#ifdef __cplusplus
58extern "C" {
59#endif
60
61void* _lfind(const void*,const void*,unsigned int*,unsigned int,
62 int (*)(const void*,const void*));
63void* _lsearch(const void*,void*,unsigned int*,unsigned int,
64 int (*)(const void*,const void*));
65void* bsearch(const void*,const void*,size_t,size_t,
66 int (*)(const void*,const void*));
67void qsort(void*,size_t,size_t,
68 int (*)(const void*,const void*));
69
70#ifdef __cplusplus
71}
72#endif
73
74
75static inline void* lfind(const void* match, const void* start, unsigned int* array_size, unsigned int elem_size, int (*cf)(const void*,const void*)) { return _lfind(match, start, array_size, elem_size, cf); }
76static inline void* lsearch(const void* match, void* start, unsigned int* array_size, unsigned int elem_size, int (*cf)(const void*,const void*) ) { return _lsearch(match, start, array_size, elem_size, cf); }
77
78#endif /* __WINE_SEARCH_H */
Note: See TracBrowser for help on using the repository browser.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette