CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 5 of 5

Threaded View

  1. #1
    Join Date
    Oct 2011
    Posts
    2

    Incorporating C in C++

    Hi all! I am trying to use an open source C library to process STDF files. I need to get the output from that library and transform it into SQL. I kept getting the error as shown below:

    Code:
    error C3861: 'stdf_open': identifier not found
    error C3861: 'stdf_read_record': identifier not found
    The functions are used in a CPP file while the actual definitions of the functions are in the C library. I have checked for the function definition in the header file and its linked to ANOTHER C file using the #include.

    I am running this project in MS VC++ 2010 Express. Can anyone help me figure out this error and how to solve it? I have attached the project along in this thread. Any help is greatly appreciated.
    Attached Files Attached Files

Tags for this Thread

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured