File: UxApplSh.h

package info (click to toggle)
eso-midas 13.09pl1.4-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 147,516 kB
  • ctags: 57,237
  • sloc: ansic: 364,554; sh: 6,936; makefile: 6,194; pascal: 535; perl: 40; awk: 36; sed: 14
file content (33 lines) | stat: -rw-r--r-- 962 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
/* @(#)UxApplSh.h	17.1 (ESO-IPG) 01/25/02 17:25:58 */
#ifndef UXApplicationShell_INCLUDED
#define UXApplicationShell_INCLUDED

#include "X11/Shell.h"

#ifdef DESIGN_TIME
#include "UxTopSh.h"

#ifndef UxGetArgv
extern binptr UxP_ApplicationShellRD_argv;
#define UxGetArgv(sw) \
        UxGET_stringTable(sw,UxP_ApplicationShellRD_argv,"argv")
#define UxPutArgv(sw,val) \
        UxPUT_stringTable(sw,UxP_ApplicationShellRD_argv,"argv",val)
#endif

#ifndef UxGetArgc
extern binptr UxP_ApplicationShellRD_argc;
#define UxGetArgc(sw) \
        UxGET_int(sw,UxP_ApplicationShellRD_argc,"argc")
#define UxPutArgc(sw,val) \
        UxPUT_int(sw,UxP_ApplicationShellRD_argc,"argc",val)
#endif

extern Class_t UxC_applicationShell;
#define UxCreateApplicationShell(name,parent) \
        UxCreateSwidget(UxC_applicationShell,name,parent)
#else
#define UxCreateApplicationShell(name,parent) \
        UxCreateSwidget(name,applicationShellWidgetClass,parent)
#endif
#endif