mirror of
https://github.com/MidnightCommander/mc
synced 2024-12-23 12:56:51 +03:00
9f81821878
* acconfig.h: Add WITH_SMBFS * macros/gnome-vfs.m4: Support conditional samba support. 1999-06-22 Miguel de Icaza <miguel@nuclecu.unam.mx> * gsession.c (create_default_panel): Use directory specified in command line. * gcorba.c (corba_create_window): Pass the directory we receive or cwd if this value is NULL. * gmain.c (non_corba_create_panels): Use parameter for startup directory (use the this_dir external directory for this). (create_panels): Pass this_dsir to non_corba_create_panels and corba_create_window.
25 lines
445 B
C
25 lines
445 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 */
|
|
extern CORBA_ORB orb;
|
|
|
|
|
|
int corba_init_server (void);
|
|
void corba_create_window (const char *startup_dir);
|
|
|
|
|
|
#endif
|