Test.c
上传用户:graphite
上传日期:2020-09-09
资源大小:2587k
文件大小:1k
源码类别:

破解

开发平台:

Others

  1. #include <windows.h>
  2. #include <io.h>
  3. #include "includeaspr.h"
  4. //----------------------------------------------------------------------
  5. int WINAPI WinMain (HINSTANCE hInstance, HINSTANCE hPrevInstance,
  6.                     PSTR szCmdLine, int iCmdShow)
  7. {
  8.  char buffer[20];
  9.  int  i;
  10.         MessageBox(0,"Begin","",0);
  11.         USER_POLYBUFFER
  12.         for ( i = 1; i < 6; i++ )
  13.         {
  14.           _itoa( i, buffer, 10 );
  15.           MessageBox( 0, buffer, "Index", 0 );
  16.         }
  17.         MessageBox(0,"End","",0);
  18.         return 0;
  19. }