
#include <windows.h>    // includes basic windows functionality
#include <commdlg.h>    // includes common dialog functionality
#include <dlgs.h>       // includes common dialog template defines
#include <cderr.h>      // includes the common dialog error codes


HINSTANCE g_hInst;		// the current instance

#pragma argsused
int APIENTRY WinMain( HINSTANCE hInstance, HINSTANCE hPrevInstance,
    LPSTR lpCmdLine, int nCmdShow )
{
	int	c = 1;
   
	asm {
		mov 	ax, 0x440D
		mov 	bh, 0x03
		mov 	bl, 0x00
		mov 	ch, 0x08
		mov 	cl, 0x4B
      mov   dx, 0x00
		int 	0x21
      jc 	_no_error
		mov	c, 0
_no_error:
   }

   if (c == 1)
   	MessageBox( NULL, "RAN OK", "Notification", 0);
   return TRUE;
}

