Develop and Download Open Source Software

Browse Subversion Repository

Diff of /trunk/teraterm/teraterm/addsetting.cpp

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 5778 by maya, Fri Feb 13 08:34:51 2015 UTC revision 5909 by maya, Sat Jul 11 16:37:16 2015 UTC
# Line 26  mouse_cursor_t MouseCursor[] = { Line 26  mouse_cursor_t MouseCursor[] = {
26  // 本体は vtwin.cpp  // 本体は vtwin.cpp
27  extern void SetWindowStyle(TTTSet *ts);  extern void SetWindowStyle(TTTSet *ts);
28    
 void split_buffer(char *buffer, int delimiter, char **head, char **body)  
 {  
         char *p1, *p2;  
   
         *head = *body = NULL;  
   
         if (!isalnum(*buffer) || (p1 = strchr(buffer, delimiter)) == NULL) {  
                 return;  
         }  
   
         *head = buffer;  
   
         p2 = buffer;  
         while (p2 < p1 && !isspace(*p2)) {  
                 p2++;  
         }  
   
         *p2 = '\0';  
   
         p1++;  
         while (*p1 && isspace(*p1)) {  
                 p1++;  
         }  
   
         *body = p1;  
 }  
   
29    
30  static void SetupRGBbox(HWND hDlgWnd, int index)  static void SetupRGBbox(HWND hDlgWnd, int index)
31  {  {

Legend:
Removed from v.5778  
changed lines
  Added in v.5909

Back to OSDN">Back to OSDN
ViewVC Help
Powered by ViewVC 1.1.26