mirror of
https://github.com/MidnightCommander/mc
synced 2024-12-23 21:06:52 +03:00
e13620fca5
* gmount.c (setup_devices): See if our supported automounter, magicdev, is running and only create links for mounted CD-ROMs if so. (automounter_is_running): For now just return TRUE; we have to wait for magicdev to export a CORBA server. * gcorba.c (corba_init_server): Initialize the POA here instead of in register_servers().
26 lines
467 B
C
26 lines
467 B
C
/* CORBA support for the Midhignt Commander
|
|
*
|
|
* Copyright (C) 1999 The Free Sofware Foundation
|
|
*
|
|
* Authors: Miguel de Icaza <miguel@nuclecu.unam.mx>
|
|
* Federico Mena <federico@nuclecu.unam.mx>
|
|
* Elliot Lee <sopwith@cuc.edu>
|
|
*/
|
|
|
|
#ifndef __GCORBA_H
|
|
#define __GCORBA_H
|
|
|
|
#include <orb/orbit.h>
|
|
|
|
|
|
/* The ORB and the POA */
|
|
extern CORBA_ORB orb;
|
|
PortableServer_POA poa;
|
|
|
|
|
|
int corba_init_server (void);
|
|
void corba_create_window (char *dir);
|
|
|
|
|
|
#endif
|