C语言怎么只能编写控制台应用程序,怎么编写WINDOWS 应用程序

C语言怎么只能编写控制台应用程序,怎么编写WINDOWS 应用程序,第1张

需要些SDK的知识,windows的实现中基本上都是用的C语言,其各种接口基本上都是原生C语言函数,具体比如SDK用的windows API。
使用纯C语言编写windows程序,工作量将会相当大,下面是一个小例子:
/
This is a simple windows program, it does nothing but draw an ellipse
Windows SDK, Win32 API ,Pure C, (Not C++ or MFC !!)
Suxpert at gmail dot com, 2008/8/24
/
#include <windowsh>
LONG WINAPI WndProc( HWND, UINT, WPARAM, LPARAM );
int APIENTRY WinMain( HINSTANCE hInstance, HINSTANCE hPrevInstance,
LPSTR lpszCmdLine, int nCmdShow ){
/ The Entry for windows program, just like main() in dos /
WNDCLASS wc;
HWND hwnd;
MSG msg;
wcstyle = 0; // Class style
wclpfnWndProc = (WNDPROC)WndProc; // Window procedure address
wccbClsExtra = 0; // Class extra bytes
wccbWndExtra = 0; // Window extra bytes
wchInstance = hInstance; // Instance handle
wchIcon = LoadIcon( NULL, IDI_WINLOGO ); // Icon handle
wchCursor = LoadCursor( NULL, IDC_ARROW ); // Cursor handle
wchbrBackground = (HBRUSH)( COLOR_WINDOW + 1 ); // Background color
wclpszMenuName = NULL; // Menu name
wclpszClassName = "WinSDKtest"; // WNDCLASS name
RegisterClass( &wc );
hwnd = CreateWindow (
"WinSDKtest", // WNDCLASS name
"SDK Application", // Window title
WS_OVERLAPPEDWINDOW, // Window style
CW_USEDEFAULT, // Horizontal position
CW_USEDEFAULT, // Vertical position
CW_USEDEFAULT, // Initial width
CW_USEDEFAULT, // Initial height
HWND_DESKTOP, // Handle of parent window
NULL, // Menu handle
hInstance, // Application's instance handle
NULL // Window-creation data
);
ShowWindow( hwnd, nCmdShow );
UpdateWindow( hwnd );
while ( GetMessage( &msg, NULL, 0, 0 ) ) {
TranslateMessage(&msg);
DispatchMessage(&msg);
}
return msgwParam;
}
LRESULT CALLBACK WndProc( HWND hwnd, UINT message, WPARAM wParam,
LPARAM lParam )
{
/ Windows will call this function anytime /
PAINTSTRUCT ps;
HDC hdc;
switch(message){
case WM_PAINT:
hdc = BeginPaint( hwnd, &ps );
Ellipse( hdc, 0, 0, 800, 600 );
// Here we Draw an ellipse in the window of our program
EndPaint( hwnd, &ps );
break; // Someone like to write return here
case WM_DESTROY:
PostQuitMessage(0);
break;
default:
return DefWindowProc( hwnd, message, wParam, lParam );
}
return 0;
}
基本过程就是直接调用windows提供的API函数,完成从窗口创建,显示等界面功能到深层的文件 *** 作,注册表等甚至windows内核调试等高级功能。

以上就是关于C语言怎么只能编写控制台应用程序,怎么编写WINDOWS 应用程序全部的内容,包括:C语言怎么只能编写控制台应用程序,怎么编写WINDOWS 应用程序、、等相关内容解答,如果想了解更多相关内容,可以关注我们,你们的支持是我们更新的动力!

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zz/9278183.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-04-26
下一篇 2023-04-26

发表评论

登录后才能评论

评论列表(0条)

保存