###User Defined Function###
_WinAPI_CreateDIBColorTable

###Description###
Creates RGB color table from the specified array of colors.

###Syntax###
#include <WinAPIGdi.au3>
_WinAPI_CreateDIBColorTable ( Const ByRef $aColorTable [, $iStart = 0 [, $iEnd = -1]] )


###Parameters###
@@ParamTable@@
$aColorTable
	The array of colors, in RGB, that to be make up the DIB color table.
$iStart
	[optional] The index of array to start creating at.
$iEnd
	[optional] The index of array to stop creating at.
@@End@@

###ReturnValue###
@@ReturnTable@@
Success 	"dword[n]" structure that represents a DIB color table.
Failure 	Sets the @error flag to non-zero.
@@End@@


###Remarks###
The color table created by this function is typically used in <a href="_WinAPI_CreateDIB.htm">_WinAPI_CreateDIB()</a> or <a href="_WinAPI_CreateDIBSection.htm">_WinAPI_CreateDIBSection()</a> function to create 1, 4, or 8 bits-per-pixel device-independent bitmap (DIB).


###Related###
_WinAPI_CreateDIB, _WinAPI_CreateDIBSection


###Example###
@@IncludeExample@@
