1 /***********************************************************************/
2 /* Open Visualization Data Explorer                                    */
3 /* (C) Copyright IBM Corp. 1989,1999                                   */
4 /* ALL RIGHTS RESERVED                                                 */
5 /* This code licensed under the                                        */
6 /*    "IBM PUBLIC LICENSE - Open Visualization Data Explorer"          */
7 /***********************************************************************/
8 
9 #include <dxconfig.h>
10 
11 
12 #include <dx/dx.h>
13 #include "context.h"
14 
_dxfCopyContext(Context * to,Context * from)15 void _dxfCopyContext(Context *to, Context *from)
16 {
17     memcpy(to, from, sizeof(Context));
18 }
19 
20