PolycodeWinIDEView.h 416 B

1234567891011121314151617181920212223
  1. #pragma once
  2. #include <winsock2.h>
  3. #include <windows.h>
  4. #include "PolyCore.h"
  5. using namespace Polycode;
  6. class PolycodeIDEApp;
  7. namespace Polycode {
  8. class _PolyExport PolycodeWinIDEView : public PolycodeViewBase {
  9. public:
  10. PolycodeWinIDEView(HINSTANCE hInstance, int nCmdShow, LPCTSTR windowTitle, bool resizable = false, bool showDebugConsole = false);
  11. ~PolycodeWinIDEView();
  12. HWND hwnd;
  13. HACCEL haccel;
  14. };
  15. }