Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
P
proview
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Esteban Blanc
proview
Commits
8b7f9256
Commit
8b7f9256
authored
Apr 28, 2015
by
Claes Sjofors
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Profinet dummy functions argument fix
parent
e0283951
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
profibus/lib/pnak_dummy/src/os_linux/pnak_dummy_functions.c
profibus/lib/pnak_dummy/src/os_linux/pnak_dummy_functions.c
+3
-3
No files found.
profibus/lib/pnak_dummy/src/os_linux/pnak_dummy_functions.c
View file @
8b7f9256
...
...
@@ -38,9 +38,9 @@ T_PNAK_RESULT pnak_mask_multiple_objects (unsigned short a1, c
T_PNAK_RESULT
pnak_get_exception
(
unsigned
short
a1
,
T_PNAK_EXCEPTION
*
a2
)
{
return
PNAK_OK
;}
T_PNAK_RESULT
pnak_get_version
(
unsigned
short
a1
,
T_PNAK_VERSIONS
*
a2
)
{
return
PNAK_OK
;}
T_PNAK_RESULT
pnak_snmp_get_data
(
unsigned
short
a1
,
T_PNAK_OID
*
a2
,
void
*
a3
,
unsigned
int
*
a4
,
unsigned
int
*
a5
,
unsigned
char
a6
,
PN_BOOL
a7
)
{
return
PNAK_OK
;}
T_PNAK_RESULT
pnak_snmp_check_data
(
unsigned
short
a1
,
T_PNAK_OID
*
a2
,
void
*
a3
,
unsigned
int
a4
,
unsigned
int
a5
,
unsigned
char
a6
)
{
return
PNAK_OK
;}
T_PNAK_RESULT
pnak_snmp_set_data
(
unsigned
short
a1
,
T_PNAK_OID
*
a2
,
void
*
a3
,
unsigned
int
a4
,
unsigned
int
a5
)
{
return
PNAK_OK
;}
T_PNAK_RESULT
pnak_snmp_get_data
(
unsigned
short
a1
,
T_PNAK_OID
*
a2
,
void
*
a3
,
PN_U32
*
a4
,
PN_U32
*
a5
,
unsigned
char
a6
,
PN_BOOL
a7
)
{
return
PNAK_OK
;}
T_PNAK_RESULT
pnak_snmp_check_data
(
unsigned
short
a1
,
T_PNAK_OID
*
a2
,
void
*
a3
,
PN_U32
a4
,
PN_U32
a5
,
unsigned
char
a6
)
{
return
PNAK_OK
;}
T_PNAK_RESULT
pnak_snmp_set_data
(
unsigned
short
a1
,
T_PNAK_OID
*
a2
,
void
*
a3
,
PN_U32
a4
,
PN_U32
a5
)
{
return
PNAK_OK
;}
/*--- Service interface functions -------------------------------------------*/
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment