[PD-cvs] pd/src s_main.c,1.7.4.17,1.7.4.18

Tim Blechmann timblech at users.sourceforge.net
Thu Jun 16 14:54:57 CEST 2005


Update of /cvsroot/pure-data/pd/src
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv20229

Modified Files:
      Tag: devel_0_38
	s_main.c 
Log Message:


Index: s_main.c
===================================================================
RCS file: /cvsroot/pure-data/pd/src/s_main.c,v
retrieving revision 1.7.4.17
retrieving revision 1.7.4.18
diff -C2 -d -r1.7.4.17 -r1.7.4.18
*** s_main.c	6 May 2005 10:36:30 -0000	1.7.4.17
--- s_main.c	16 Jun 2005 12:54:54 -0000	1.7.4.18
***************
*** 8,12 ****
   */
  
! char pd_version[] = "Pd version 0.38.4 devel\n";
  char pd_compiletime[] = __TIME__;
  char pd_compiledate[] = __DATE__;
--- 8,12 ----
   */
  
! char pd_version[] = "Pd version 0.38.4 devel 2\n";
  char pd_compiletime[] = __TIME__;
  char pd_compiledate[] = __DATE__;
***************
*** 41,44 ****
--- 41,45 ----
  void sys_findprogdir(char *progname);
  int sys_startgui(const char *guipath);
+ void sys_init_idle_callbacks(void);
  int sys_rcfile(void);
  int m_scheduler(void);
***************
*** 297,300 ****
--- 298,304 ----
  #endif
  	}
+ 	/* initalize idle callbacks before starting the gui */
+ 	sys_init_idle_callbacks();
+ 	
  	/* } tb */
  
***************
*** 306,309 ****
--- 310,314 ----
      if (sys_version)    /* if we were just asked our version, exit here. */
          return (0);
+ 
      if (sys_startgui(sys_guidir->s_name))       /* start the gui */
          return(1);
***************
*** 643,647 ****
          else if (!strcmp(*argv, "-cb_scheduler"))
          {
!             sys_callbackscheduler = 1;
              argc--; argv++;
  		}
--- 648,652 ----
          else if (!strcmp(*argv, "-cb_scheduler"))
          {
!             sys_setscheduler(1);
              argc--; argv++;
  		}





More information about the Pd-cvs mailing list