mirror of
https://github.com/cc65/cc65.git
synced 2025-02-06 12:31:12 +00:00
Add 'extern "C"' so the module may be used from C++ sources.
git-svn-id: svn://svn.cc65.org/cc65/trunk@4801 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
parent
3f7fc55c7e
commit
5625977188
@ -38,6 +38,13 @@
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
/* Allow usage from C++ */
|
||||||
|
#ifdef __cplusplus
|
||||||
|
extern "C" {
|
||||||
|
#endif
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/*****************************************************************************/
|
/*****************************************************************************/
|
||||||
/* Data */
|
/* Data */
|
||||||
/*****************************************************************************/
|
/*****************************************************************************/
|
||||||
@ -183,10 +190,15 @@ void cc65_free_segmentinfo (cc65_dbginfo handle, cc65_segmentinfo* info);
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
/* End of dbginfo.h */
|
/* Allow usage from C++ */
|
||||||
|
#ifdef __cplusplus
|
||||||
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
/* End of dbginfo.h */
|
||||||
|
#endif
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user