X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/33f9dbda891b14ea52c7526eede0cce422ce7c4c..33f3e2b31ed781ba1446b49ec6d3e226c0a5c652:/include/wx/defs.h diff --git a/include/wx/defs.h b/include/wx/defs.h index 3e87cac57c..f95bb7cc34 100644 --- a/include/wx/defs.h +++ b/include/wx/defs.h @@ -3360,7 +3360,8 @@ typedef const void* WXWidget; /* If a manifest is being automatically generated, add common controls 6 to it */ /* --------------------------------------------------------------------------- */ -#if (!defined wxUSE_NO_MANIFEST || wxUSE_NO_MANIFEST == 0 ) && \ +#if wxUSE_GUI && \ + (!defined wxUSE_NO_MANIFEST || wxUSE_NO_MANIFEST == 0 ) && \ ( defined _MSC_FULL_VER && _MSC_FULL_VER >= 140040130 ) #define WX_CC_MANIFEST(cpu) \ @@ -3383,5 +3384,13 @@ typedef const void* WXWidget; #endif /* !wxUSE_NO_MANIFEST && _MSC_FULL_VER >= 140040130 */ +/* wxThread and wxProcess priorities */ +enum +{ + wxPRIORITY_MIN = 0u, /* lowest possible priority */ + wxPRIORITY_DEFAULT = 50u, /* normal priority */ + wxPRIORITY_MAX = 100u /* highest possible priority */ +}; + #endif /* _WX_DEFS_H_ */