Windows NT KAMIDAKI 10.0 build 19045 (Windows 10) AMD64
Apache/2.4.58 (Win64) OpenSSL/3.1.3 PHP/8.3.9
Server IP : 192.168.3.16 & Your IP : 216.73.216.52
Domains :
Cant Read [ /etc/named.conf ]
User : SISTEMA
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
C: /
xampp /
FileZillaFTP /
source /
interface /
misc /
Delete
Unzip
Name
Size
Permission
Date
Action
BrowseForFolder.cpp
8.8
KB
-rw-rw-rw-
2012-04-16 19:30
BrowseForFolder.h
5.37
KB
-rw-rw-rw-
2012-04-16 19:30
HyperLink.cpp
17.25
KB
-rw-rw-rw-
2012-04-16 19:30
Led.cpp
7.06
KB
-rw-rw-rw-
2012-04-16 19:30
Led.h
2.48
KB
-rw-rw-rw-
2012-04-16 19:30
ProcessorInfo.h
8.22
KB
-rw-rw-rw-
2012-04-16 19:30
SAPrefsDialog.cpp
14.54
KB
-rw-rw-rw-
2012-04-16 19:30
SAPrefsDialog.h
4.23
KB
-rw-rw-rw-
2012-04-16 19:30
SAPrefsStatic.cpp
6.25
KB
-rw-rw-rw-
2012-04-16 19:30
SAPrefsStatic.h
2.63
KB
-rw-rw-rw-
2012-04-16 19:30
SAPrefsSubDlg.cpp
3.03
KB
-rw-rw-rw-
2012-04-16 19:30
SAPrefsSubDlg.h
1.95
KB
-rw-rw-rw-
2012-04-16 19:30
SBDestination.cpp
1.13
KB
-rw-rw-rw-
2012-04-16 19:30
SBDestination.h
777
B
-rw-rw-rw-
2012-04-16 19:30
SystemTray.cpp
32.5
KB
-rw-rw-rw-
2012-04-16 19:30
SystemTray.h
5.89
KB
-rw-rw-rw-
2012-04-16 19:30
WindowsVersion.h
4.07
KB
-rw-rw-rw-
2012-04-16 19:30
hyperlink.h
4.11
KB
-rw-rw-rw-
2012-04-16 19:30
Save
Rename
/////////////////////////////////////////////////////////////////////////////// // Led.h : header file // Visual Source Safe: $Revision: 1.2 $ // // Led static control. Will display a LED in 4 different colors and two shapes. /////////////////////////////////////////////////////////////////////////////// // Copyright (C) 1998-1999 Monte Variakojis ( monte@apollocom.com ) // All rights reserved - not to be sold. /////////////////////////////////////////////////////////////////////////////// #if !defined(AFX_LEDWND_H__2D837381_FFEC_11D1_A1CE_00A024D311C0__INCLUDED_) #define AFX_LEDWND_H__2D837381_FFEC_11D1_A1CE_00A024D311C0__INCLUDED_ #if _MSC_VER >= 1000 #pragma once #endif // _MSC_VER >= 1000 /////////////////////////////////////////////////////////////////////////////// #define LED_SIZE 16 // Led are 16 X 16 pixels ///////////////////////////////////////////////////////////////////////////// // CLed window class CLed : public CStatic { protected: int m_nLedColor, m_nLedMode, m_nLedShape; DWORD m_dwPingTimeout; BOOL m_bPingEnabled; CBitmap m_LedBitmap; bool m_continuePing; public: enum { LED_ROUND = 0, // Circle starts at row 0 LED_SQUARE = LED_SIZE * 4, // squares start at row 4 }; enum { LED_COLOR_RED = 0 * LED_SIZE, // Row 0 LED_COLOR_GREEN = 1 * LED_SIZE, // Row 1 LED_COLOR_YELLOW = 2 * LED_SIZE, // Row 2 LED_COLOR_BLUE = 3 * LED_SIZE, // Row 3 }; enum { LED_ON = 0, // Column 0 LED_OFF = 1, // Column 1 LED_DISABLED = 2, // Column 2 }; // Construction public: CLed(); // Attributes public: // Operations public: void SetLed(int nLedColor, int nMode, int nShape); int GetLedMode(){return m_nLedMode;} void Ping(DWORD dwTimeout = 1000); // Overrides // ClassWizard generated virtual function overrides //{{AFX_VIRTUAL(CLed) //}}AFX_VIRTUAL // Implementation public: void DrawLed( CDC *pDC, int nLEDColor, int nMode, int nShape ); virtual ~CLed(); // Generated message map functions protected: //{{AFX_MSG(CLed) afx_msg void OnPaint(); afx_msg void OnTimer(UINT_PTR nIDEvent); afx_msg BOOL OnEraseBkgnd(CDC* pDC); //}}AFX_MSG DECLARE_MESSAGE_MAP() }; ///////////////////////////////////////////////////////////////////////////// //{{AFX_INSERT_LOCATION}} // Microsoft Developer Studio will insert additional declarations immediately before the previous line. #endif // !defined(AFX_LEDWND_H__2D837381_FFEC_11D1_A1CE_00A024D311C0__INCLUDED_)