Changeset 2056 for trunk/src/msvcrt
- Timestamp:
 - Dec 11, 1999, 2:35:52 PM (26 years ago)
 - File:
 - 
      
- 1 edited
 
- 
          
  trunk/src/msvcrt/msvcrt.cpp (modified) (4 diffs)
 
 
Legend:
- Unmodified
 - Added
 - Removed
 
- 
      
trunk/src/msvcrt/msvcrt.cpp
r1896 r2056 1 /* $Id: msvcrt.cpp,v 1. 8 1999-11-30 19:44:04sandervl Exp $ */1 /* $Id: msvcrt.cpp,v 1.9 1999-12-11 13:35:52 sandervl Exp $ */ 2 2 3 3 /* … … 13 13 #include <odinwrap.h> 14 14 #include <wchar.h> 15 #include <except.h>16 15 #include <heapstring.h> 17 16 #include <crtdll.h> … … 674 673 675 674 i=0;xargv=NULL;xargc=0;afterlastspace=0; 675 /* 676 676 while (cmdline[i]) { 677 677 if (cmdline[i]==' ') { … … 697 697 xargv[xargc-1] = HEAP_strdupA( GetProcessHeap(), 0, 698 698 cmdline+afterlastspace); 699 */ 699 700 MSVCRT___argc = xargc; 700 701 *argc = xargc; 701 702 MSVCRT___argv = xargv; 702 703 *argv = xargv; 704 MSVCRT__environ = *environ = GetEnvironmentStringsA(); 703 705 dprintf(("MSVCRT: GetMainArgs end\n")); 704 MSVCRT__environ = *environ = GetEnvironmentStringsA();705 706 return 0; 706 707 }  
  Note:
 See   TracChangeset
 for help on using the changeset viewer.
  