GraphWindows.c

Go to the documentation of this file.
00001 /*-----------------------------------------------------------------------------------*/
00002 /* INRIA 2005 */
00003 /* Allan CORNET */
00004 /*-----------------------------------------------------------------------------------*/
00005 #include "GraphWindows.h"
00006 #include "win_mem_alloc.h" /* MALLOC */
00007 /*-----------------------------------------------------------------------------------*/
00008 GW graphwin;
00009 /*-----------------------------------------------------------------------------------*/
00010 LPGW GetGraphWinScilab(void)
00011 {
00012         return &graphwin;
00013 }
00014 /*-----------------------------------------------------------------------------------*/
00015 GW InitGWStruct(void)
00016 {
00017         GW GWStruct;
00018 
00019         GWStruct.lpr=NULL;
00020         GWStruct.hInstance=NULL;
00021         GWStruct.hPrevInstance=NULL;
00022         GWStruct.Title=NULL;
00023         GWStruct.xmax=0;
00024         GWStruct.ymax=0;
00025         GWStruct.lptw=NULL;
00026 
00027         GWStruct.Origin.x=0;
00028         GWStruct.Origin.y=0;
00029 
00030         GWStruct.Size.x=0;
00031         GWStruct.Size.y=0;
00032 
00033         GWStruct.hPopMenu=NULL;
00034         GWStruct.resized=FALSE;
00035         GWStruct.graphtotop=FALSE;
00036         GWStruct.locked=FALSE;
00037         GWStruct.ButtonHeight=0;
00038         GWStruct.szMenuName=NULL;
00039         
00040         return GWStruct;
00041 }
00042 /*-----------------------------------------------------------------------------------*/
00043 

Generated on Sun Mar 4 15:03:54 2007 for Scilab [trunk] by  doxygen 1.5.1