Path: utzoo!utgpu!water!watmath!clyde!att!rutgers!rochester!pt.cs.cmu.edu!andrew.cmu.edu!ev04+ From: ev04+@andrew.cmu.edu (Edward Bertram Victor) Newsgroups: comp.sys.mac.programmer Subject: Large Resource Message-ID:Date: 5 Jul 88 18:58:35 GMT Organization: Carnegie Mellon Lines: 29 How could one declare this as a resource such that the array size could be >32k. I read in mac.programmer that one could do a GetResource to automatically load an array into memory that was written as a resource. I have used this successfully in Aztec C with large data types, but am now porting it into MPW. My knowledge of Rez is not sufficient enough to come up with an elegant solution. #define MAXSEGS 100 #define MAXLINES 20 typedef struct { int xc, yc, zc; } TDpts; typedef struct { int x, y; TDpts ThreeD[MAXSEGS]; float segment; } line; line lines[MAXLINES]; Thanks. Ed Victor, CDEC Carnegie-Mellon University ev04@andrew