- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
dear ALL, please help...
I use cray-like pointers in CVF 6.0+ for dynamics sub calls in the next manner:
But in the IF 7.0 this doesn't work, because
"sub name as a pointee doesn't allowed here..."
But this method is very important for me:
mixed-language programming, dll etc...
what I must do?
thanks in advice...
I use cray-like pointers in CVF 6.0+ for dynamics sub calls in the next manner:
subroutine someSub() end subroutine someSub subroutine newSub() end subroutine newSub pointer (ptr, someSub) ... ptr = Loc(newSub) call someSub() !!! call newSub not someSub!
But in the IF 7.0 this doesn't work, because
"sub name as a pointee doesn't allowed here..."
But this method is very important for me:
mixed-language programming, dll etc...
what I must do?
thanks in advice...
Link Copied
6 Replies
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Wait for 8.0. Or, use something like this:
call callit(%val(ptr))
...
subroutine callit (rout)
external rout
call rout
end subroutine callit
Steve
call callit(%val(ptr))
...
subroutine callit (rout)
external rout
call rout
end subroutine callit
Steve
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
//Wait for 8.0. Or, use something like this...
really?
You'll remove these restrictions?
this will be great!
thank You
really?
You'll remove these restrictions?
this will be great!
thank You
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
8.0 will include the "pointer to procedure" extension of CVF as well as many other CVF features.
Steve
Steve
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
and when this v8.0 would be released?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
December.
Steve
Steve
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
good news...
thanks once more...
thanks once more...

Reply
Topic Options
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page