Skip to content

Commit

Permalink
url.h - enable call from c++ code.
Browse files Browse the repository at this point in the history
  • Loading branch information
pjbroad committed Feb 12, 2013
1 parent 241498c commit cc9c634
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions url.h
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@
#ifndef __URL_H__
#define __URL_H__

#ifdef __cplusplus
extern "C" {
#endif

/*!
* \ingroup url
* \brief Clears the list of stored URL freeing all allocated memory.
Expand Down Expand Up @@ -74,4 +78,9 @@ extern int url_win_x; /*!< the current x coordinate value of the url window *
extern int url_win_y; /*!< the current y coordinate value of the url window */
extern int url_win; /*!< the id of the url window */
extern char LOGO_URL_LINK[128]; /*!< the link clicking the EL logo sends you to */

#ifdef __cplusplus
} // extern "C"
#endif

#endif

0 comments on commit cc9c634

Please sign in to comment.