Remove whitespace lines
This commit is contained in:
@@ -7,25 +7,25 @@
|
||||
|
||||
|
||||
namespace lime {
|
||||
|
||||
|
||||
|
||||
|
||||
enum SystemDirectory {
|
||||
|
||||
|
||||
APPLICATION,
|
||||
APPLICATION_STORAGE,
|
||||
DESKTOP,
|
||||
DOCUMENTS,
|
||||
FONTS,
|
||||
USER
|
||||
|
||||
|
||||
};
|
||||
|
||||
|
||||
|
||||
|
||||
class System {
|
||||
|
||||
|
||||
|
||||
|
||||
public:
|
||||
|
||||
|
||||
static void GCEnterBlocking ();
|
||||
static void GCExitBlocking ();
|
||||
static bool GetAllowScreenTimeout ();
|
||||
@@ -51,28 +51,28 @@ namespace lime {
|
||||
#ifdef HX_WINDOWS
|
||||
static bool SetWindowsConsoleMode (int handleType, int mode);
|
||||
#endif
|
||||
|
||||
|
||||
private:
|
||||
|
||||
|
||||
static bool _isHL;
|
||||
|
||||
|
||||
|
||||
|
||||
};
|
||||
|
||||
|
||||
|
||||
|
||||
struct FILE_HANDLE {
|
||||
|
||||
|
||||
void *handle;
|
||||
|
||||
|
||||
FILE_HANDLE (void* handle) : handle (handle) {}
|
||||
|
||||
|
||||
FILE* getFile ();
|
||||
int getLength ();
|
||||
bool isFile ();
|
||||
|
||||
|
||||
};
|
||||
|
||||
|
||||
|
||||
|
||||
extern int fclose (FILE_HANDLE *stream);
|
||||
extern FILE_HANDLE *fdopen (int fd, const char *mode);
|
||||
extern FILE_HANDLE *fopen (const char *filename, const char *mode);
|
||||
@@ -81,8 +81,8 @@ namespace lime {
|
||||
extern int fseek (FILE_HANDLE *stream, long int offset, int origin);
|
||||
extern long int ftell (FILE_HANDLE *stream);
|
||||
extern size_t fwrite (const void *ptr, size_t size, size_t count, FILE_HANDLE *stream);
|
||||
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
|
||||
@@ -92,35 +92,35 @@ namespace lime {
|
||||
|
||||
|
||||
// ISO C9x compliant stdint.h for Microsoft Visual Studio
|
||||
// Based on ISO/IEC 9899:TC2 Committee draft (May 6, 2005) WG14/N1124
|
||||
//
|
||||
// Based on ISO/IEC 9899:TC2 Committee draft (May 6, 2005) WG14/N1124
|
||||
//
|
||||
// Copyright (c) 2006-2013 Alexander Chemeris
|
||||
//
|
||||
//
|
||||
// Redistribution and use in source and binary forms, with or without
|
||||
// modification, are permitted provided that the following conditions are met:
|
||||
//
|
||||
//
|
||||
// 1. Redistributions of source code must retain the above copyright notice,
|
||||
// this list of conditions and the following disclaimer.
|
||||
//
|
||||
//
|
||||
// 2. Redistributions in binary form must reproduce the above copyright
|
||||
// notice, this list of conditions and the following disclaimer in the
|
||||
// documentation and/or other materials provided with the distribution.
|
||||
//
|
||||
//
|
||||
// 3. Neither the name of the product nor the names of its contributors may
|
||||
// be used to endorse or promote products derived from this software
|
||||
// without specific prior written permission.
|
||||
//
|
||||
//
|
||||
// THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED
|
||||
// WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
|
||||
// MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO
|
||||
// EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
||||
// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
|
||||
// PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
|
||||
// OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
|
||||
// OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
|
||||
// WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
|
||||
// OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
|
||||
// ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
//
|
||||
//
|
||||
///////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
#ifndef _MSC_VER // [
|
||||
|
||||
Reference in New Issue
Block a user