VS2003 IDE : HowTo make a SIMPLE AND PLAIN C project not C++ NOT .NET NOT Managed

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • laurent4x4x
    New Member
    • Nov 2006
    • 1

    VS2003 IDE : HowTo make a SIMPLE AND PLAIN C project not C++ NOT .NET NOT Managed

    Hi all ,
    just a simple fact : i know java and i know a little bit of C,
    not good at all in C++ or .Net framework

    I got a simple sdk (about indexing ) an old one from 1998, in plain C no C++ (and no .Net of course)
    It's ok for me my little knowledge in C is good enough to deal with that

    BUT
    I got MS VisualStudio 2003
    How the hell can I ask for a siomple C project (no C++)
    -no CLR, No CRT , no managed code
    -no linkig to some msvcr71.dll etc... (I have to put it on work on a system without the .Net framework)

    just a plain C app who use simple ANSI API
    ?
    Where to start from ?
    What are the tricks ... I've search in msdn in the project properties page..
    Or do you got some dummy project file i can use and then write my own code...


    Thanks a lot !!!
  • Banfa
    Recognized Expert Expert
    • Feb 2006
    • 9067

    #2
    Create a console application project with no auto generated code.

    Add your existing code files to that project.

    Compile it.

    Fix any errors that occur.

    Comment

    Working...