Sponsored Content
Full Discussion: if
Top Forums Programming if Post 302267708 by shamrock on Saturday 13th of December 2008 01:31:33 PM
Old 12-13-2008
Use the preprocessor provided conditional statements for that...
Code:
#if machine == freeBSD
     #define HDR "somefile.h"
#elif machine == Linux
     #define HDR "otherfile.h"
#else
     #define HDR "default.h"
#endif

#include HDR

 
set_display_switch_callback(3alleg4)				  Allegro manual			      set_display_switch_callback(3alleg4)

NAME
set_display_switch_callback - Installs a switching notification callback. Allegro game programming library. SYNOPSIS
#include <allegro.h> int set_display_switch_callback(int dir, void (*cb)()); DESCRIPTION
Installs a notification callback for the switching mode that was previously selected by calling set_display_switch_mode(). The direction parameter can either be SWITCH_IN or SWITCH_OUT, depending whether you want to be notified about switches away from your program or back to your program. You can sometimes install callbacks for both directions at the same time, but not every platform supports this. You can install several switch callbacks, but no more than eight on any platform. RETURN VALUE
Returns zero on success, decreasing the number of empty callback slots by one. Returns -1 if the request is impossible for the current platform or you have reached the maximum number of allowed callbacks. SEE ALSO
remove_display_switch_callback(3alleg4), set_display_switch_mode(3alleg4), exswitch(3alleg4) Allegro version 4.4.2 set_display_switch_callback(3alleg4)
All times are GMT -4. The time now is 07:32 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy