home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / S12733.ZIP / COMMON.C < prev    next >
Text File  |  1990-10-17  |  274b  |  18 lines

  1. #include <os2.h>
  2. #include <stddef.h>
  3. #include "stdlib.h"
  4. #include "hello.h"
  5.  
  6.  
  7. void MessageInt(hWnd,i,lpText)
  8. HWND hWnd;
  9. int i;
  10. PCH lpText;
  11. {
  12. char tmp[8];
  13.  
  14. itoa(i,tmp,10);
  15. WinMessageBox(HWND_DESKTOP, hWnd, (PCH)tmp, lpText, 0, MB_OK|MB_ICONEXCLAMATION);
  16. }
  17. 
  18.