dotgnu-pnet-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Dotgnu-pnet-commits] pnetlib/Xsharp/Types XSecurityAttributeMask.cs, NO


From: Rhys Weatherley <address@hidden>
Subject: [Dotgnu-pnet-commits] pnetlib/Xsharp/Types XSecurityAttributeMask.cs, NONE, 1.1 XSecurityAuthorizationAttributes.cs, NONE, 1.1 Xauth.cs, NONE, 1.1
Date: Fri, 31 Oct 2003 06:44:37 +0000

Update of /cvsroot/dotgnu-pnet/pnetlib/Xsharp/Types
In directory subversions:/tmp/cvs-serv17812/Xsharp/Types

Added Files:
        XSecurityAttributeMask.cs XSecurityAuthorizationAttributes.cs 
        Xauth.cs 
Log Message:


add support to Xsharp to embed third party X applications inside a
child widget using XC-APPGROUP.


--- NEW FILE: XSecurityAttributeMask.cs ---
/*
 * XSecurityAttributeMask.cs - Security value mask values.
 *
 * Copyright (C) 2003  Southern Storm Software, Pty Ltd.
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 */

namespace Xsharp.Types
{

using System;

[Flags]
internal enum XSecurityAttributeMask
{

        XSecurityTimeout                = (1<<0),
        XSecurityTrustLevel             = (1<<1),
        XSecurityGroup                  = (1<<2),
        XSecurityEventMask              = (1<<3)

} // enum XSecurityAttributeMask

} // namespace Xsharp.Types

--- NEW FILE: XSecurityAuthorizationAttributes.cs ---
/*
 * XSecurityAuthorizationAttributes.cs - Definition of security attributes.
 *
 * Copyright (C) 2003  Southern Storm Software, Pty Ltd.
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 */

namespace Xsharp.Types
{

using System;
using System.Runtime.InteropServices;

[StructLayout(LayoutKind.Sequential)]
internal struct XSecurityAuthorizationAttributes
{

        // Structure fields.
        public Xlib.Xuint               timeout__;
        public Xlib.Xuint               trust_level__;
        public Xlib.XID                 group;
        public Xlib.Xlong               event_mask__;

        // Convert odd fields into types that are useful.
        public uint timeout
                        { get { return (uint)timeout__; }
                          set { timeout__ = (Xlib.Xuint)value; } }
        public uint trust_level
                        { get { return (uint)trust_level__; }
                          set { trust_level__ = (Xlib.Xuint)value; } }
        public long event_mask
                        { get { return (long)event_mask__; }
                          set { event_mask__ = (Xlib.Xlong)value; } }

} // struct XSecurityAuthorizationAttributes

} // namespace Xsharp.Types

--- NEW FILE: Xauth.cs ---
/*
 * Xauth.cs - Definition of authentication tokens.
 *
 * Copyright (C) 2003  Southern Storm Software, Pty Ltd.
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 */

namespace Xsharp.Types
{

using System;
using System.Runtime.InteropServices;

[StructLayout(LayoutKind.Sequential)]
internal struct Xauth
{

        public ushort family;
        public ushort address_length;
        public IntPtr address;
        public ushort number_length;
        public IntPtr number;
        public ushort name_length;
        public IntPtr name;
        public ushort data_length;
        public IntPtr data;

} // struct Xauth

} // namespace Xsharp.Types





reply via email to

[Prev in Thread] Current Thread [Next in Thread]