In programming, a declaration of a function to the compiler indicating what types of parameters are passed to it and what value is returned. The compiler can then report an error if a function within the program is not written to conform to the prototype. See function.
Prototype
void printHelloWorld(void);
Function
void printHelloWorld(void)
{
printf ("Hello World\n");
}
void DrawTransparentBitmap(HDC hdc,
HBITMAP hBitmap,
int xStart,
int yStart,
COLORREF cTransparentColor);