1
1
Fork 0
mirror of https://github.com/QB64-Phoenix-Edition/QB64pe.git synced 2024-07-03 13:31:23 +00:00

Add function _AUTODISPLAY so user can get display/autodisplay staus

This commit is contained in:
SteveMcNeill 2017-09-24 18:41:00 -04:00
parent 034027553c
commit 4f23fd9b7b
4 changed files with 17 additions and 1 deletions

View file

@ -37,3 +37,4 @@ int32 func_screenicon ();
extern HWND window_handle;
#endif
int32 func__autodisplay ();

View file

@ -61,3 +61,8 @@ int32 func_screenicon () {
return 0; //if we get here and haven't exited already, we failed somewhere along the way.
#endif
}
int32 func__autodisplay () {
if (autodisplay) {return -1;}
return 0;
}

View file

@ -4,4 +4,4 @@ DIM SHARED AutoBuildMsg AS STRING
Version$ = "1.1"
'BuildNum format is YYYYMMDD/id, where id is a ever-increasing
'integer. If you make a change, update the date and increase the id!
BuildNum$ = "20170924/68"
BuildNum$ = "20170924/69"

View file

@ -328,3 +328,13 @@ id.ret = LONGTYPE - ISPOINTER
id.Dependency = DEPENDENCY_USER_MODS
regid
clearid
id.n = "_AUTODISPLAY"
id.subfunc = 1
id.callname = "func__autodisplay"
id.args = 0
id.ret = LONGTYPE - ISPOINTER
id.Dependency = DEPENDENCY_USER_MODS
regid