git-svn-id: svn://db.shs.com.ru/pip@361 12ceb7fc-bf1f-11e4-8940-5bc7170c53b5

This commit is contained in:
2017-04-14 14:15:22 +00:00
parent db1410d918
commit 8cdf50a45f
25 changed files with 175 additions and 64 deletions

View File

@@ -16,7 +16,11 @@
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#include "pibase.h"
#ifdef WINDOWS
# include <windef.h>
# include <winbase.h>
#endif
#include "piconsole.h"
#include "pipeer.h"
#include "piprotocol.h"

View File

@@ -16,7 +16,11 @@
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#include "pibase.h"
#ifdef WINDOWS
# include <windef.h>
# include <winbase.h>
#endif
#include "pikbdlistener.h"
#ifndef WINDOWS
# include <termios.h>

View File

@@ -16,7 +16,11 @@
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#include "pibase.h"
#ifdef WINDOWS
# include <windef.h>
# include <winbase.h>
#endif
#include "piscreen.h"
#ifndef WINDOWS
# include <sys/ioctl.h>

View File

@@ -16,13 +16,17 @@
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#include "pibase.h"
#ifdef WINDOWS
# include <windef.h>
# include <winbase.h>
#endif
#include "piterminal.h"
# include "pisharedmemory.h"
#ifdef CC_GCC
# include <unistd.h>
#endif
#ifdef WINDOWS
# include "pisharedmemory.h"
# include <windows.h>
# include <wincon.h>
# include <winuser.h>