test.cpp
上传用户:lswyart
上传日期:2008-06-12
资源大小:3441k
文件大小:1k
源码类别:

杀毒

开发平台:

Visual C++

  1. // test.cpp : Defines the entry point for the console application.
  2. //
  3. #include "stdafx.h"
  4. #include <windows.h>
  5. extern "C"  void LaunchBalloon(LPCTSTR strTitle, LPCTSTR strContent, 
  6.                POINT& ptAnchor, 
  7.                LPCTSTR szIcon,
  8.                unsigned int unOptions,
  9.                HWND hParentWnd,
  10.                LPCTSTR strURL,
  11.                unsigned int unTimeout);
  12. int main(int argc, char* argv[])
  13. {
  14. printf("Hello World!n");
  15. POINT pt = {100,100};
  16. LaunchBalloon("Test Title", "Test TextnTest Text2", pt, IDI_EXCLAMATION, 0x438, NULL, "", 10000);
  17. // Start the message loop. 
  18.  
  19. BOOL bRet;
  20. MSG msg;
  21.    while((bRet = GetMessage( &msg, NULL, 0, 0 )) != 0)
  22.    { 
  23.       if (bRet == -1)
  24.       {
  25.           // handle the error and possibly exit
  26.       }
  27.       else
  28.       {
  29.           TranslateMessage(&msg); 
  30.           DispatchMessage(&msg); 
  31.       }
  32.     } 
  33. return 0;
  34. }