plainwhitewrapper wrote: > Hi, > > I need to compile a linux code under windows. How do I turn the .c > linux file into a .sln windows file? > > Thanks in advance for the help. > >
A *.c file is nothing more than an ASCII text file containing code in the C programming language. Visual Studio should be able to compile it as a *.c file it, using the Visual Studio C compiler. You may have some problems, though, porting from *nix to Windows, depending on what header files the *nix code will require. I stopped using Visual Studio when I moved over to *nix, around v.5, so I do not know about *.sln files... just used the C compiler. A little Googling brought up: http://msdn2.microsoft.com/en-us/library/xhkhh4zs(VS.71).aspx ...which seems to imply that *.sln files have some sort of function other than simply containing C code. -- -wittig http://www.robertwittig.com/ http://robertwittig.net/ http://robertwittig.org/ . To unsubscribe from this list, please email [EMAIL PROTECTED] & you will be removed. Yahoo! Groups Links <*> To visit your group on the web, go to: http://groups.yahoo.com/group/LINUX_Newbies/ <*> Your email settings: Individual Email | Traditional <*> To change settings online go to: http://groups.yahoo.com/group/LINUX_Newbies/join (Yahoo! ID required) <*> To change settings via email: mailto:[EMAIL PROTECTED] mailto:[EMAIL PROTECTED] <*> To unsubscribe from this group, send an email to: [EMAIL PROTECTED] <*> Your use of Yahoo! Groups is subject to: http://docs.yahoo.com/info/terms/
