mirror of https://github.com/lianthony/NT4.0
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
540 B
31 lines
540 B
/*
|
|
Enhanced NCSA Mosaic from Spyglass
|
|
"Guitar"
|
|
|
|
Copyright 1994 Spyglass, Inc.
|
|
All Rights Reserved
|
|
|
|
Author(s):
|
|
Eric W. Sink [email protected]
|
|
*/
|
|
|
|
|
|
#ifndef PAGE_H
|
|
#define PAGE_H
|
|
|
|
#define PAGE_SETUP_STRINGLIMIT 64
|
|
|
|
struct page_setup
|
|
{
|
|
float marginleft;
|
|
float margintop;
|
|
float marginright;
|
|
float marginbottom;
|
|
|
|
char headerleft[PAGE_SETUP_STRINGLIMIT + 1];
|
|
char headerright[PAGE_SETUP_STRINGLIMIT + 1];
|
|
char footerleft[PAGE_SETUP_STRINGLIMIT + 1];
|
|
char footerright[PAGE_SETUP_STRINGLIMIT + 1];
|
|
};
|
|
|
|
#endif /* PAGE_H */
|