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
05a92bc0
Commit
05a92bc0
authored
Nov 17, 2009
by
Claes Sjofors
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
wbl, conversion of Int64 and UInt64 attributes added
parent
c36de4d5
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
0 deletions
+12
-0
wb/lib/wb/src/wb_wblnode.cpp
wb/lib/wb/src/wb_wblnode.cpp
+12
-0
No files found.
wb/lib/wb/src/wb_wblnode.cpp
View file @
05a92bc0
...
@@ -2119,6 +2119,12 @@ int wb_wblnode::attrStringToValue( int type_id, char *value_str,
...
@@ -2119,6 +2119,12 @@ int wb_wblnode::attrStringToValue( int type_id, char *value_str,
return
0
;
return
0
;
break
;
break
;
}
}
case
pwr_eType_Int64
:
{
if
(
sscanf
(
value_str
,
pwr_dFormatInt64
,
(
pwr_tInt64
*
)
buffer_ptr
)
!=
1
)
return
0
;
break
;
}
case
pwr_eType_UInt8
:
case
pwr_eType_UInt8
:
{
{
pwr_tUInt8
i8
;
pwr_tUInt8
i8
;
...
@@ -2144,6 +2150,12 @@ int wb_wblnode::attrStringToValue( int type_id, char *value_str,
...
@@ -2144,6 +2150,12 @@ int wb_wblnode::attrStringToValue( int type_id, char *value_str,
return
0
;
return
0
;
break
;
break
;
}
}
case
pwr_eType_UInt64
:
{
if
(
sscanf
(
value_str
,
pwr_dFormatUInt64
,
(
pwr_tUInt64
*
)
buffer_ptr
)
!=
1
)
return
0
;
break
;
}
case
pwr_eType_Text
:
case
pwr_eType_Text
:
case
pwr_eType_String
:
case
pwr_eType_String
:
case
pwr_eType_ProString
:
case
pwr_eType_ProString
:
...
...
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