-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathArrayFB2.cs
More file actions
38 lines (32 loc) · 802 Bytes
/
ArrayFB2.cs
File metadata and controls
38 lines (32 loc) · 802 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
#region Copyright
//
// Copyright (c) Phoenix Contact GmbH & Co. KG. All rights reserved.
// Licensed under the MIT. See LICENSE file in the project root for full license information.
//
#endregion Copyright
using Eclr;
using Iec61131.Engineering.Prototypes.Methods;
using Iec61131.Engineering.Prototypes.Types;
using Iec61131.Engineering.Prototypes.Variables;
namespace DocuSharedNativeLibrary
{
[FunctionBlock]
[Native]
public unsafe class ArrayFB2
{
[InOut]
public Int32Array* IN_ARRAY;
[InOut]
public Int32Array* OUT_ARRAY;
[Initialization]
[Managed]
public void __Init()
{
}
[Execution]
public void __Process()
{
// Implementation in native code
}
}
}