aboutdlg.h
上传用户:kittypts
上传日期:2018-02-11
资源大小:241k
文件大小:2k
源码类别:

PlugIns编程

开发平台:

Visual C++

  1. /*****************************************************************************
  2. Windows Live Messenger Plug-in Demo
  3. Copyright (C) 2008  Hern醤 Di Pietro
  4. This program is free software: you can redistribute it and/or modify
  5. it under the terms of the GNU General Public License as published by
  6. the Free Software Foundation, either version 3 of the License, or
  7. (at your option) any later version.
  8. This program is distributed in the hope that it will be useful,
  9. but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  11. GNU General Public License for more details.
  12. You should have received a copy of the GNU General Public License
  13. along with this program.  If not, see <http://www.gnu.org/licenses/>.
  14. ********************************************************************************/
  15. #ifndef ABOUTDLG_H
  16. #define ABOUTDLG_H
  17. #define CX_DIALOGSIZE 400
  18. #define CY_DIALOGSIZE 200
  19. #define ID_OK 1
  20. #define WM_CREATECHILDCTRLS WM_USER+100
  21. // global storing HWND
  22. //
  23. extern HWND g_hwndNktAbout;
  24. // displayed message
  25. const WCHAR wszMessage[] = L"Plugin Demo DLLn"
  26.                            L"Version 1.0.0n"
  27.                         L"nCopyright (C) 2008 Hern醤 Di Pietron"
  28.                         L"nnLicensed under GNU General Public License.n"
  29.                         L"Read the LICENSE.TXT file for details.";
  30. // function prototypes
  31. //
  32. void CreateAboutDlg(HWND*);
  33. LRESULT AboutDlgProc (HWND hwnd, UINT uMsg, WPARAM wparam, LPARAM lparam);
  34. #endif