aboutdlg.h
上传用户:kittypts
上传日期:2018-02-11
资源大小:241k
文件大小:2k
- /*****************************************************************************
- Windows Live Messenger Plug-in Demo
- Copyright (C) 2008 Hern醤 Di Pietro
- This program is free software: you can redistribute it and/or modify
- it under the terms of the GNU General Public License as published by
- the Free Software Foundation, either version 3 of the License, or
- (at your option) any later version.
- This program is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- GNU General Public License for more details.
- You should have received a copy of the GNU General Public License
- along with this program. If not, see <http://www.gnu.org/licenses/>.
- ********************************************************************************/
- #ifndef ABOUTDLG_H
- #define ABOUTDLG_H
- #define CX_DIALOGSIZE 400
- #define CY_DIALOGSIZE 200
- #define ID_OK 1
- #define WM_CREATECHILDCTRLS WM_USER+100
- // global storing HWND
- //
- extern HWND g_hwndNktAbout;
- // displayed message
- const WCHAR wszMessage[] = L"Plugin Demo DLLn"
- L"Version 1.0.0n"
- L"nCopyright (C) 2008 Hern醤 Di Pietron"
- L"nnLicensed under GNU General Public License.n"
- L"Read the LICENSE.TXT file for details.";
- // function prototypes
- //
- void CreateAboutDlg(HWND*);
- LRESULT AboutDlgProc (HWND hwnd, UINT uMsg, WPARAM wparam, LPARAM lparam);
- #endif