谁能告诉我windows.h中有哪些函数,他们有哪些功能????

来源:百度知道 编辑:UC知道 时间:2024/06/03 17:14:10
有没有具体的函数?
好像还有个messagebox,怎么用啊

幽居古藤
好像system()在 stdlib.h中有啊
里面是dos命令

是的当你调用Dos命令的时候你就要用到windows.h这个头文件吧

/*++ BUILD Version: 0001 Increment this if a change has global effects

Copyright (c) 1985-1997, Microsoft Corporation

Module Name:

windows.h

Abstract:

Master include file for Windows applications.

--*/

#ifndef _WINDOWS_
#define _WINDOWS_

#ifndef WINVER
#define WINVER 0x0400
#else
#if defined(_WIN32_WINNT) && (WINVER < 0x0400) && (_WIN32_WINNT > 0x0400)
#error WINVER setting conflicts with _WIN32_WINNT setting
#endif
#endif

#if(WINVER >= 0x0500)
#pragma message ("")
#pragma message ("NOTE: WINVER has been defined as 0x0500 or greater which enables")
#pragma message ("Windows NT 5.0 and Windows 98 features. When these headers were released,")
#pragma message ("Windows NT 5.0 beta 1 and Windows 98 beta 2.1 were the current versions."