Skip to content

Commit fede506

Browse files
committed
Fix DLL build
1 parent 263ef32 commit fede506

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

include/nbl/ui/IWindowManager.h

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -22,11 +22,11 @@ class NBL_API2 IWindowManager : public core::IReferenceCounted
2222
virtual core::smart_refctd_ptr<IWindow> createWindow(IWindow::SCreationParams&& creationParams) = 0;
2323
virtual SDisplayInfo getPrimaryDisplayInfo() const = 0;
2424

25-
NBL_API2 virtual bool setWindowSize_impl(IWindow* window, uint32_t width, uint32_t height) = 0;
26-
NBL_API2 virtual bool setWindowPosition_impl(IWindow* window, int32_t x, int32_t y) = 0;
27-
NBL_API2 virtual bool setWindowRotation_impl(IWindow* window, bool landscape) = 0;
28-
NBL_API2 virtual bool setWindowVisible_impl(IWindow* window, bool visible) = 0;
29-
NBL_API2 virtual bool setWindowMaximized_impl(IWindow* window, bool maximized) = 0;
25+
virtual bool setWindowSize_impl(IWindow* window, uint32_t width, uint32_t height) = 0;
26+
virtual bool setWindowPosition_impl(IWindow* window, int32_t x, int32_t y) = 0;
27+
virtual bool setWindowRotation_impl(IWindow* window, bool landscape) = 0;
28+
virtual bool setWindowVisible_impl(IWindow* window, bool visible) = 0;
29+
virtual bool setWindowMaximized_impl(IWindow* window, bool maximized) = 0;
3030

3131
inline bool setWindowSize(IWindow* window, const uint32_t width, const uint32_t height)
3232
{

0 commit comments

Comments
 (0)