Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:2246 Return-Path: Mailing-List: contact internals-help@lists.php.net; run by ezmlm Delivered-To: mailing list internals@lists.php.net Received: (qmail 43607 invoked by uid 1007); 9 Jun 2003 06:22:10 -0000 Message-ID: <20030609062210.43606.qmail@pb1.pair.com> To: internals@lists.php.net Reply-To: "l0t3k" Date: Mon, 9 Jun 2003 02:22:18 -0400 Lines: 12 X-Priority: 3 X-MSMail-Priority: Normal X-Newsreader: Microsoft Outlook Express 6.00.2600.0000 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2600.0000 X-Posted-By: 68.158.70.29 Subject: VC6 question (extension related) From: cshmoove@bellsouth.net ("l0t3k") i have an extension which uses a huge chunk of static data (about 1 Meg). instead of compiling it into the extension, i set up a sub project to compile the data into a shared object/DLL so memory could be more efficiently used across multiple processes. in any case i exported the data (or so i thought) from the DLL, but in the debugger all i get is NULs. is it possible to export global variables of arbitrary type in VC6, or are we limited to primitive types ? l0t3k BTW - the data is essentially a byte array prefixed by a header and TOC