]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/debug.h
Added Latex style file
[wxWidgets.git] / include / wx / debug.h
index 26ed65b3149f184bf728ab8da92f95b467b8d0c5..816caa0324f31c8335aef14c2fccf02072a7d57e 100644 (file)
@@ -51,7 +51,7 @@
   @param   szFile and nLine - file name and line number of the ASSERT
            szMsg            - optional message explaining the reason
   */
-  void wxOnAssert(const char *szFile, int nLine, const char *szMsg = (const char *) NULL);
+  void WXDLLEXPORT wxOnAssert(const char *szFile, int nLine, const char *szMsg = (const char *) NULL);
 
   /// generic assert macro
   #define   wxASSERT(cond)   if ( !(cond) ) wxOnAssert(__FILE__, __LINE__)