mirror of
https://github.com/gnustep/libs-gui.git
synced 2025-05-30 11:40:37 +00:00
Header files reorganized. All the definitions were moved in appropiate files.
Each header file includes only the header files it needs and it uses @class to forward reference a class. git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@2189 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
8c3afd9724
commit
d5fd123408
151 changed files with 2718 additions and 3068 deletions
|
@ -26,11 +26,16 @@
|
|||
59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
||||
*/
|
||||
|
||||
#include <gnustep/gui/Functions.h>
|
||||
#include <gnustep/gui/LogFile.h>
|
||||
#include <stdio.h>
|
||||
#include <stdarg.h>
|
||||
|
||||
#include <AppKit/NSGraphics.h>
|
||||
|
||||
#ifndef LIB_FOUNDATION_LIBRARY
|
||||
|
||||
#include <Foundation/NSString.h>
|
||||
#include <gnustep/gui/LogFile.h>
|
||||
|
||||
// Should be in Foundation Kit
|
||||
// Does not handle %@
|
||||
// yuck, yuck, yuck
|
||||
|
@ -51,7 +56,18 @@ void NSLog(NSString *format, ...)
|
|||
NSLogV(format, ap);
|
||||
va_end(ap);
|
||||
}
|
||||
#endif /* LIB_FOUNDATION_LIBRARY */
|
||||
|
||||
void NSNullLog(NSString *format, ...)
|
||||
{
|
||||
}
|
||||
|
||||
//
|
||||
// Play the System Beep
|
||||
//
|
||||
void NSBeep(void)
|
||||
{
|
||||
#ifdef WIN32
|
||||
MessageBeep(MB_OK);
|
||||
#endif
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue