|
1 /*------------------------------------------------------------------------ |
|
2 * |
|
3 * Copyright (c) 2010 Nokia Corporation and/or its subsidiary(-ies). |
|
4 * |
|
5 * Permission is hereby granted, free of charge, to any person obtaining a |
|
6 * copy of this software and /or associated documentation files |
|
7 * (the "Materials "), to deal in the Materials without restriction, |
|
8 * including without limitation the rights to use, copy, modify, merge, |
|
9 * publish, distribute, sublicense, and/or sell copies of the Materials, |
|
10 * and to permit persons to whom the Materials are furnished to do so, |
|
11 * subject to the following conditions: |
|
12 * |
|
13 * The above copyright notice and this permission notice shall be included |
|
14 * in all copies or substantial portions of the Materials. |
|
15 * |
|
16 * THE MATERIALS ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, |
|
17 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF |
|
18 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. |
|
19 * IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, |
|
20 * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR |
|
21 * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE MATERIALS OR |
|
22 * THE USE OR OTHER DEALINGS IN THE MATERIALS. |
|
23 * |
|
24 *//*-------------------------------------------------------------------*/ |
|
25 |
|
26 #ifndef __RIUTILS_H_ |
|
27 #define __RIUTILS_H_ |
|
28 |
|
29 #ifndef __RIDEFS_H |
|
30 # include "riDefs.h" |
|
31 #endif |
|
32 |
|
33 // This file contains "utility" functions that did not "fit" into existing RI files. |
|
34 // Once more functionality is accumulated, the corresponding functions/classes should be |
|
35 // moved to proper files asap. For example, the memcopy functions could go into file |
|
36 // "riMemory.xxx". |
|
37 |
|
38 namespace OpenVGRI |
|
39 { |
|
40 |
|
41 void riMemSet32(void* dst, RIuint32 c, size_t nElements, size_t nBytesPerElement); |
|
42 |
|
43 } |
|
44 |
|
45 #endif |
|
46 |