MESSAGE.H
资源名称:MSDN_VC98.zip [点击查看]
上传用户:bangxh
上传日期:2007-01-31
资源大小:42235k
文件大小:1k
源码类别:
Windows编程
开发平台:
Visual C++
- //+---------------------------------------------------------------------------
- //
- // Microsoft Windows
- // Copyright (C) Microsoft Corporation, 1992 - 1995.
- //
- // File: message.h
- //
- // Contents: Helper functions for popup message boxes.
- //
- // Classes:
- //
- // Functions: MessageBoxFromStringIds
- //
- // History: 6-24-94 stevebl Created
- //
- //----------------------------------------------------------------------------
- #ifndef __MESSAGE_H__
- #define __MESSAGE_H__
- #define MAX_STRING_LENGTH 256
- int MessageBoxFromStringIds(
- const HWND hwndOwner,
- const HINSTANCE hinst,
- const UINT idText,
- const UINT idTitle,
- const UINT fuStyle);
- int MessageBoxFromStringIdsAndArgs(
- const HWND hwndOwner,
- const HINSTANCE hinst,
- const UINT idText,
- const UINT idTitle,
- const UINT fuStyle,
- ...);
- #endif //__MESSAGE_H__