Content-Type: text/plain Content-Disposition: inline Content-Transfer-Encoding: binary MIME-Version: 1.0 X-Mailer: MIME-tools 5.411 (Entity 5.404) Subject: CCAPI should use a cc_handle not implemented as a pointer X-RT-Original-Encoding: iso-8859-1 Content-Length: 386 The cc_handle is currently a 64-bit unsigned integer however its value is obtained by casting a pointer. The forward and reverse casts may not be safe on all platforms and often produce many warnings. Implementing casting functions is a possibility. However, if it is not more work a better scheme would be to use an index value that looks up the appropriate pointer in a table.