Initialize user copperlist to accept intermediate user copper instructions.
Source position: agraphics.pas line 2306
| function CINIT( | 
| c: PUCopList; | 
| n: SmallInt | 
| ):PCopList; | 
| c | 
 | A pointer to UCopList structure | 
| n | 
 | Number of instructions buffer must be able to hold | 
Allocates and/or initialize copperlist structures/buffers internal to a UCopList structure.
This is a macro that calls UCopListInit. You must pass a (non-initialized) UCopList to CINIT (CINIT will NOT allocate a new UCopList if c = nil ). If (c >< nil) it will initialize the intermediate data buffers internal to a UCopList.
The maximum number of intermediate copper list instructions that these internal CopList data buffers contain is specified as the parameter n.
| 
 | Append copper move instruction to user copper list. | |
| 
 | Append copper move instruction to user copper list. | |
| 
 | Terminate user copper list. |