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
a88c8c4f
Commit
a88c8c4f
authored
Nov 22, 2005
by
claes
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Call from c++ modification
parent
96b77c9d
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
37 additions
and
13 deletions
+37
-13
wb/lib/wb/src/wb_trv.h
wb/lib/wb/src/wb_trv.h
+13
-1
wb/lib/wb/src/wb_utl.c
wb/lib/wb/src/wb_utl.c
+9
-6
wb/lib/wb/src/wb_utl.h
wb/lib/wb/src/wb_utl.h
+15
-6
No files found.
wb/lib/wb/src/wb_trv.h
View file @
a88c8c4f
/*
* Proview $Id: wb_trv.h,v 1.
5 2005-09-06 10:43:32
claes Exp $
* Proview $Id: wb_trv.h,v 1.
6 2005-11-22 12:26:24
claes Exp $
* Copyright (C) 2005 SSAB Oxelsund AB.
*
* This program is free software; you can redistribute it and/or
...
...
@@ -24,6 +24,10 @@
#include "wb_ldh.h"
#endif
#ifdef __cplusplus
extern
"C"
{
#endif
typedef
enum
{
trv_eDepth_Deep
,
trv_eDepth_Children
,
...
...
@@ -164,7 +168,11 @@ int trv_get_docobjects (
int
trv_object_search
(
trv_ctx
trvctx
,
#ifdef __cplusplus
int
(
*
backcall
)(
pwr_sAttrRef
*
,
void
*
,
void
*
,
void
*
,
void
*
,
void
*
),
#else
int
(
*
backcall
)(),
#endif
void
*
arg1
,
void
*
arg2
,
void
*
arg3
,
...
...
@@ -199,5 +207,9 @@ int trv_get_attrobjects (
void
*
arg5
);
#ifdef __cplusplus
}
#endif
#endif
wb/lib/wb/src/wb_utl.c
View file @
a88c8c4f
/*
* Proview $Id: wb_utl.c,v 1.2
0 2005-11-02 14:30:44
claes Exp $
* Proview $Id: wb_utl.c,v 1.2
1 2005-11-22 12:26:58
claes Exp $
* Copyright (C) 2005 SSAB Oxelsund AB.
*
* This program is free software; you can redistribute it and/or
...
...
@@ -1360,14 +1360,17 @@ void utl_objidlist_free( utl_t_objidlist *list)
int
utl_objidlist_insert
(
pwr_sAttrRef
*
arp
,
utl_t_objidlist
**
list
,
int
*
count
,
int
dum1
,
int
dum2
,
int
dum3
void
*
l
,
void
*
c
,
void
*
dum1
,
void
*
dum2
,
void
*
dum3
)
{
utl_t_objidlist
*
list_ptr
;
utl_t_objidlist
**
list
=
(
utl_t_objidlist
**
)
l
;
int
*
count
=
(
int
*
)
c
;
if
(
*
list
)
{
...
...
wb/lib/wb/src/wb_utl.h
View file @
a88c8c4f
/*
* Proview $Id: wb_utl.h,v 1.
7 2005-09-06 10:43:32
claes Exp $
* Proview $Id: wb_utl.h,v 1.
8 2005-11-22 12:26:58
claes Exp $
* Copyright (C) 2005 SSAB Oxelsund AB.
*
* This program is free software; you can redistribute it and/or
...
...
@@ -28,6 +28,11 @@
#include <X11/Intrinsic.h>
#endif
#ifdef __cplusplus
extern
"C"
{
#endif
typedef
struct
utl_s_objidlist
{
pwr_tObjid
objid
;
struct
utl_s_objidlist
*
next
;
...
...
@@ -49,11 +54,11 @@ void utl_objidlist_free (
int
utl_objidlist_insert
(
pwr_sAttrRef
*
arp
,
utl_t_objidlist
**
list
,
int
*
count
,
int
dum1
,
int
dum2
,
int
dum3
void
*
l
,
void
*
c
,
void
*
dum1
,
void
*
dum2
,
void
*
dum3
);
int
utl_toupper
(
...
...
@@ -496,4 +501,8 @@ int utl_revert (
int
confirm
);
#ifdef __cplusplus
}
#endif
#endif
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