2025-04-27 07:49:33 -04:00

47 lines
1011 B
C

/*
*
* template.c
*
* This file defines the general format of all source files for the XXXX
* project. This section of the file defines a general propose of the
* file or the functions within the file.
*
* Created: 11/26/91
* Author: Optional information
* Contributor:
*/
#include <window.h>
#include "h/xxxx.h"
#include "h/template.h"
/* Global/Static Data -- If any --
*/
/* Local Function Declaration -- if any --
*/
static dword localfunction( dword, dword );
/* Function_name
*
* Checks the blah blah blah index of the polar corrdinates of the greater
* downtown sector of newly formed blah blah.
*
* Arg1 -- provides the blah blah for estimating the blah balh. Valid range
* of values if from 0-100 inclusive. Values outside this range will
* cause error return of EXECES_BLAH
*
* Arg2 -- Blah Blah Blah
*
* Return Value:
* EXECESS_BLAH
* Success_BLAH
*
*/
DWORD
Function_name( DWORD Arg1, DWORD Arg2 )
{
}