start of Win32 port

This commit is contained in:
Matej Sekoranja
2013-11-20 13:04:28 +01:00
parent 47178370d5
commit a574dbf89b
76 changed files with 365 additions and 158 deletions
+6 -3
View File
@@ -10,8 +10,11 @@
*/
#ifndef PVSUBARRAYCOPY_H
#define PVSUBARRAYCOPY_H
#include <pv/pvData.h>
#include <sharelib.h>
namespace epics { namespace pvData {
/** @brief Copy a subarray from one PVValueArray to another.
@@ -38,7 +41,7 @@ void copy(
* @param toOffset The offset in the destination
* @param len The total number of elements to copy
*/
void copy(
epicsShareExtern void copy(
PVScalarArray & from,
size_t fromOffset,
PVScalarArray & to,
@@ -54,7 +57,7 @@ void copy(
* @param toOffset The offset in the destination
* @param len The total number of elements to copy
*/
void copy(
epicsShareExtern void copy(
PVStructureArray & from,
size_t fromOffset,
PVStructureArray & to,
@@ -70,7 +73,7 @@ void copy(
* @param toOffset The offset in the destination
* @param len The total number of elements to copy
*/
void copy(
epicsShareExtern void copy(
PVArray & from,
size_t fromOffset,
PVArray & to,