Thread: Dev-C++ doesn't accept RCDATA!

  1. #1
    Registered User Queatrix's Avatar
    Join Date
    Apr 2005
    Posts
    1,342

    Question Dev-C++ doesn't accept RCDATA!

    When I attempt to compile:

    ABOUT RCDATA "about.txt"

    Dev-C++ returns the error: Invalid syntex error.
    I have followed many different examples an none of them work. Why won't Dev-C++ compile RCDATA data?

  2. #2
    erstwhile
    Join Date
    Jan 2002
    Posts
    2,227
    Assuming that ABOUT is properly defined, you would need to enclose the data in braces, i.e.,:
    Code:
    ABOUT RCDATA 
    {
    "about.txt"
    }
    CProgramming FAQ
    Caution: this person may be a carrier of the misinformation virus.

Popular pages Recent additions subscribe to a feed

Similar Threads

  1. Resources with Dev C++ Problem (many simple problems)
    By Zeusbwr in forum Windows Programming
    Replies: 4
    Last Post: 04-06-2005, 11:08 PM
  2. New to Dev C++/<windows.h>...
    By Cilius in forum C++ Programming
    Replies: 3
    Last Post: 02-23-2005, 01:05 AM
  3. async Client/Server app, accept() stalls?
    By JaWiB in forum Networking/Device Communication
    Replies: 14
    Last Post: 01-31-2005, 05:59 PM
  4. Glut and Dev C++, Programs not Quitting?
    By Zeusbwr in forum Game Programming
    Replies: 13
    Last Post: 11-29-2004, 08:43 PM
  5. openGL programming - From MSVC++ to Dev C++
    By WDT in forum Game Programming
    Replies: 3
    Last Post: 03-08-2004, 08:47 PM