mirror of
https://git.tartarus.org/simon/putty.git
synced 2025-03-18 21:05:26 -05:00

* The ability to load the configuration from the current resource file (ie the application for now). * A scroll bar and size box that look right, even if they don't actually _do_ anything yet. * A load of other minor tweaks. [originally from svn r62]
21 lines
361 B
C
21 lines
361 B
C
/*
|
|
* mac.h -- macintosh-specific declarations
|
|
*/
|
|
|
|
#ifndef _PUTTY_MAC_H
|
|
#define _PUTTY_MAC_H
|
|
|
|
#include <MacTypes.h>
|
|
#include <MacWindows.h>
|
|
|
|
extern long mac_qdversion;
|
|
|
|
/* from macterm.c */
|
|
extern void mac_newsession(void);
|
|
extern void mac_activateterm(WindowPtr, Boolean);
|
|
extern void mac_updateterm(WindowPtr);
|
|
|
|
extern void mac_loadconfig(Config *);
|
|
|
|
#endif
|