home *** CD-ROM | disk | FTP | other *** search
- Norcroft C
- ~~~~~~~~~~
-
- For copyright reasons, I cannot distribute changed versions of the Norcroft C
- header files, but they may be updated for C++ with little difficulty.
-
- There are problem with RISC_OSLib, as one of the structures is named
- 'template', which is a reserved word in C++, so unless you are willing to
- change the name of this structure, I would not bother with the RISC_OSlib
- headers, but only the ANSI headers.
-
- The format of the header files is generally :
-
- #ifndef GUARD
- #define GUARD
-
- #include <...>
-
- <declarations>
-
- #endif
-
- This should be changed to:
-
- #ifndef GUARD
- #define GUARD
-
- #include <...>
-
- #ifdef __cplusplus
- extern "C" {
- #endif
-
- <declarations>
-
- #ifdef __cplusplus
- }
- #endif
-
- #endif
-