- |
// custaddr.c : Defines the entry point for the DLL application.
//
#include "stdafx.h"
#include
#include
__declspec( dllexport ) int CUSTADDR( void )
{
char msg[200]="this is in C";
char title[50]="C Windows Program";
MessageBox(NULL,msg,title,MB_OK|MB_SETFOREGROUND);
return TRUE;
}