annotate cpp/qt_qtd/ArrayOpsPrimitive_shell.cpp @ 384:d2f48c4cb3e3

Same behavior of shared libs on linux and windows. Minor build script fixes.
author Max Samukha <maxter@spambox.com>
date Fri, 16 Jul 2010 20:04:29 +0300
parents 9784459f0750
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
1
e78566595089 initial import
mandel
parents:
diff changeset
1 /**
357
9784459f0750 An attempt (failed due to optlink) to improve locality of declarations exported from QtD executables
Max Samukha <maxter@spambox.com>
parents: 254
diff changeset
2 Copyright: Copyright QtD Team, 2008-2010
9784459f0750 An attempt (failed due to optlink) to improve locality of declarations exported from QtD executables
Max Samukha <maxter@spambox.com>
parents: 254
diff changeset
3 License: Boost License 1.0
9784459f0750 An attempt (failed due to optlink) to improve locality of declarations exported from QtD executables
Max Samukha <maxter@spambox.com>
parents: 254
diff changeset
4 */
1
e78566595089 initial import
mandel
parents:
diff changeset
5
e78566595089 initial import
mandel
parents:
diff changeset
6 #include "ArrayOpsPrimitive.h"
e78566595089 initial import
mandel
parents:
diff changeset
7
384
d2f48c4cb3e3 Same behavior of shared libs on linux and windows. Minor build script fixes.
Max Samukha <maxter@spambox.com>
parents: 357
diff changeset
8 QTD_FUNC(CORE, allocate_int_array)
d2f48c4cb3e3 Same behavior of shared libs on linux and windows. Minor build script fixes.
Max Samukha <maxter@spambox.com>
parents: 357
diff changeset
9 QTD_FUNC(CORE, assign_int_array_element)
d2f48c4cb3e3 Same behavior of shared libs on linux and windows. Minor build script fixes.
Max Samukha <maxter@spambox.com>
parents: 357
diff changeset
10 QTD_FUNC(CORE, get_int_from_array)
1
e78566595089 initial import
mandel
parents:
diff changeset
11
384
d2f48c4cb3e3 Same behavior of shared libs on linux and windows. Minor build script fixes.
Max Samukha <maxter@spambox.com>
parents: 357
diff changeset
12 QTD_FUNC(CORE, allocate_uint_array)
d2f48c4cb3e3 Same behavior of shared libs on linux and windows. Minor build script fixes.
Max Samukha <maxter@spambox.com>
parents: 357
diff changeset
13 QTD_FUNC(CORE, assign_uint_array_element)
d2f48c4cb3e3 Same behavior of shared libs on linux and windows. Minor build script fixes.
Max Samukha <maxter@spambox.com>
parents: 357
diff changeset
14 QTD_FUNC(CORE, get_uint_from_array)
1
e78566595089 initial import
mandel
parents:
diff changeset
15
384
d2f48c4cb3e3 Same behavior of shared libs on linux and windows. Minor build script fixes.
Max Samukha <maxter@spambox.com>
parents: 357
diff changeset
16 QTD_FUNC(CORE, allocate_double_array)
d2f48c4cb3e3 Same behavior of shared libs on linux and windows. Minor build script fixes.
Max Samukha <maxter@spambox.com>
parents: 357
diff changeset
17 QTD_FUNC(CORE, assign_double_array_element)
d2f48c4cb3e3 Same behavior of shared libs on linux and windows. Minor build script fixes.
Max Samukha <maxter@spambox.com>
parents: 357
diff changeset
18 QTD_FUNC(CORE, get_double_from_array)
254
maxter
parents: 252
diff changeset
19
384
d2f48c4cb3e3 Same behavior of shared libs on linux and windows. Minor build script fixes.
Max Samukha <maxter@spambox.com>
parents: 357
diff changeset
20 QTD_FUNC(CORE, allocate_string_array)
d2f48c4cb3e3 Same behavior of shared libs on linux and windows. Minor build script fixes.
Max Samukha <maxter@spambox.com>
parents: 357
diff changeset
21 QTD_FUNC(CORE, assign_string_array_element)
d2f48c4cb3e3 Same behavior of shared libs on linux and windows. Minor build script fixes.
Max Samukha <maxter@spambox.com>
parents: 357
diff changeset
22 QTD_FUNC(CORE, string_from_array)
d2f48c4cb3e3 Same behavior of shared libs on linux and windows. Minor build script fixes.
Max Samukha <maxter@spambox.com>
parents: 357
diff changeset
23 QTD_FUNC(CORE, get_string_from_array)
254
maxter
parents: 252
diff changeset
24