X-Git-Url: http://git.mutantstargoat.com/user/nuclear/?a=blobdiff_plain;ds=sidebyside;f=src%2Fmswin%2Ffg_internal_mswin.h;fp=src%2Fmswin%2Ffg_internal_mswin.h;h=0e97c9500cff47140c9842831ed0712d88512f99;hb=f0ba4e97608a444ae0a94e2408ed1a647ee38672;hp=3e7d5c771c9db56320c7d06b022f8907c9ad9b2c;hpb=93011e4f079bbfdb796c7b7f524f247956cc4830;p=freeglut diff --git a/src/mswin/fg_internal_mswin.h b/src/mswin/fg_internal_mswin.h index 3e7d5c7..0e97c95 100644 --- a/src/mswin/fg_internal_mswin.h +++ b/src/mswin/fg_internal_mswin.h @@ -98,6 +98,14 @@ struct tagSFG_PlatformWindowState GLboolean MouseTracking; /* Needed for generating GLUT_ENTERED and GLUT_LEFT entry func callbacks on windows */ GLboolean WindowFuncCalled; /* Indicate whether windowStatus/visibility func was notified that this window was created */ + + /* Need to store window titles to emulate + * glutSetIconTitle/glutSetWindowTitle as Windows has only + * one title associated with a window and we need to swap + * them out based on the window's iconic state + */ + char* WindowTitle; + char* IconTitle; };