問題タブ [tdm-gcc]

For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.

0 投票する
0 に答える
607 参照

c - Make a borderless resizable window in WinAPI

I wanna make a borderless resizable window in c language using TDM-GCC compilers.

I use built-in TDM-GCC library and CreateWindowEX(...) function to make a window.

I know that I can use WS_POPUP | WS_SIZEBOX | WS_MAXIMIZEBOX | WS_MINIMIZEBOX to make titleless resizable window; but I wanna make borderless window exactly with no border.

Thank you.