Update MainWindow.h

Add spacing, add capitalization where appropriate
This commit is contained in:
Derek "Turtle" Roe 2021-03-17 03:29:32 -05:00
parent c6b914aee2
commit a1b5cdd58c
1 changed files with 5 additions and 5 deletions

View File

@ -7,10 +7,10 @@
#include <Project64\UserInterface\EnhancementUI.h> #include <Project64\UserInterface\EnhancementUI.h>
#include <Project64\UserInterface\ProjectSupport.h> #include <Project64\UserInterface\ProjectSupport.h>
class CGfxPlugin; //Plugin that controls the rendering class CGfxPlugin; // Plugin that controls the rendering
class CAudioPlugin; //Plugin for audio, need the hwnd class CAudioPlugin; // Plugin for audio, need the hwnd
class CControl_Plugin; //Controller needs hwnd to see if it is the focused window class CControl_Plugin; // Controller needs hwnd to see if it is the focused window
class CBaseMenu; //Menu for the gui class CBaseMenu; // Menu for the GUI
class CN64System; class CN64System;
class CriticalSection; class CriticalSection;
@ -88,7 +88,7 @@ private:
void ChangeWinSize(long width, long height); void ChangeWinSize(long width, long height);
void Create(const char * WindowTitle); void Create(const char * WindowTitle);
void CreateStatusBar(void); void CreateStatusBar(void);
void Resize(DWORD fwSizeType, WORD nWidth, WORD nHeight); //responding to WM_SIZE void Resize(DWORD fwSizeType, WORD nWidth, WORD nHeight); // Responding to WM_SIZE
void AddRecentRom(const char * ImagePath); void AddRecentRom(const char * ImagePath);
void SetWindowCaption(const wchar_t * Caption); void SetWindowCaption(const wchar_t * Caption);
void ShowRomBrowser(void); void ShowRomBrowser(void);