The MASM Forum Archive 2004 to 2012

Project Support Forums => MASM32 => Topic started by: xandaz on December 18, 2010, 01:28:40 AM

Title: PUBLIC, EXTRN ?
Post by: xandaz on December 18, 2010, 01:28:40 AM
    I've been having some trouble understanding how to manage data structures and arrays of some kind that are common to different source files. I mean fa.: i want to write a an app of any kind and want to use a main source file with the program's essencials and several other source files dedicated by subject. If some data that is declared on the main source file is used by a function on another source file that is mentioned as an inclusion on the main file i get the undefined symbol error. Should i use the public and extrn directives or this is history? There are simpler ways to do this, right? Thanks and bye
Title: Re: PUBLIC, EXTRN ?
Post by: GregL on December 18, 2010, 02:23:46 AM
xandaz,

You could use PUBLIC and EXTERN, but EXTERNDEF makes things easier.  Attached is an example of using EXTERNDEF.


When trying to upload the 4 KB file I got the following message:

Quote from: The MASM ForumAn Error Has Occurred!
The upload folder is full. Please try a smaller file and/or contact an administrator.

I'll upload the example when I can.  Look up EXTERNDEF in the MASM Programmer's Guide.
Title: Re: PUBLIC, EXTRN ?
Post by: dedndave on December 18, 2010, 02:27:23 AM
Greg helped me in this thread, too   :U

http://www.masm32.com/board/index.php?topic=15480.msg126931#msg126931
Title: Re: PUBLIC, EXTRN ?
Post by: GregL on December 18, 2010, 03:26:00 AM
Still can't upload the file.

Dave,

This example takes it a step further.


It boils down to this:  You can put the EXTERNDEF statements in an include file and just include that file in each module that either defines or references the data.  It will act as either PUBLIC, EXTERN or will be ignored as required.

EXTERNDEF (http://msdn.microsoft.com/en-us/library/91sxd44w%28v=VS.100%29.aspx)
Title: Re: PUBLIC, EXTRN ?
Post by: hutch-- on December 18, 2010, 03:36:34 AM
Sorry about that, it was a server setting. Added an extra 250 meg so it will be a while before it happens again.
Title: Re: PUBLIC, EXTRN ?
Post by: GregL on December 18, 2010, 03:45:10 AM
Thanks Hutch. :bg

I'll attach the example file here.
Title: Re: PUBLIC, EXTRN ?
Post by: dedndave on December 18, 2010, 03:50:01 AM
thanks again Greg   :U
Title: Re: PUBLIC, EXTRN ?
Post by: GregL on December 18, 2010, 04:13:49 AM
Dave,

You bet.  :bg

Sorry about the paths in make.cmd, I fixed them up and uploaded again.
Title: Re: PUBLIC, EXTRN ?
Post by: xandaz on December 18, 2010, 05:50:22 PM
thanks greg. bye