Skip to content

Instantly share code, notes, and snippets.

@fushnisoft
Created April 11, 2013 08:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save fushnisoft/5361600 to your computer and use it in GitHub Desktop.
Save fushnisoft/5361600 to your computer and use it in GitHub Desktop.
Copy Clarion record structures using file references
Convert PROCEDURE(*FILE pSourceFile, *FILE pTargetFile)
sourceRec &GROUP
targetRec &GROUP
CODE
sourceRec &= pSourceFile{PROP:Record}
targetRec &= pTargetFile{PROP:Record}
targetRec :=: sourceRec
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment