n = ObtainPen( cm, n, r, g, b, flags)
d0 a0 d0 d1 d2 d3 d4
LONG ObtainPen(struct ColorMap *,ULONG,ULONG,ULONG,ULONG,ULONG);
Attempt to allocate an entry in the colormap for use by the application. If successful, you should
ReleasePen() this entry after you have finished with it.
Applications needing exclusive use of a color register (say for color cycling) will typically call this function with n=-1. Applications needing only the shared use of a color will typically use
ObtainBestPenA() instead. Other uses of this function are rare.
When you allocate a palette entry in non-exclusive mode, you should not change it (via
SetRGB32), because other programs on the same screen may be using it. With PEN_EXCLUSIVE mode, you can change the returned entry at will.
To avoid visual artifacts, you should not free up a palette entry until you are sure that your application is not displaying any pixels in that color at the time you free it. Otherwise, another task could allocate and set that color index, thus changing the colors of your pixels.
Generally, for shared access, you should use
ObtainBestPenA() instead, since it will not allocate a new color if there is one "close enough" to the one you want already. If there is no Palextra attached to the colormap, then this routine will always fail.