summaryrefslogtreecommitdiff
path: root/ldmicro/includes
diff options
context:
space:
mode:
Diffstat (limited to 'ldmicro/includes')
-rw-r--r--ldmicro/includes/linuxUI/linuxLD.h60
-rw-r--r--ldmicro/includes/linuxUI/linuxUI.h19
2 files changed, 0 insertions, 79 deletions
diff --git a/ldmicro/includes/linuxUI/linuxLD.h b/ldmicro/includes/linuxUI/linuxLD.h
deleted file mode 100644
index 53194e1..0000000
--- a/ldmicro/includes/linuxUI/linuxLD.h
+++ /dev/null
@@ -1,60 +0,0 @@
-#ifndef __LINUX_LD__
-#define __LINUX_LD__
-
-#include "linuxUI/linuxUI.h"
-
-/// common windows referances for linux
-
-/// definitions
-#define MAX_PATH PATH_MAX
-/// CALLBACK or __stdcall os defined empty
-#define CALLBACK
-
-/// typedefs
-//typedef int64_t __int64;
-typedef bool BOOL;
-typedef unsigned char BYTE;
-typedef unsigned int DWORD;
-
-/// all handles will hold a GtkWindow* type
-typedef void* PVOID;
-typedef GtkWidget* HANDLE;
-typedef HANDLE HINSTANCE;
-typedef HANDLE HWID;
-typedef HANDLE HDC;
-typedef HANDLE HMENU;
-
-typedef GtkWindow* HWND;
-
-typedef GtkApplication* HAPP;
-
-/// Check if system is x64 or x86
-#if defined(__UNIX64)
-typedef uint64_t UINT_PTR;
-#else
-typedef unsigned int UINT_PTR;
-#endif
-
-typedef UINT_PTR WPARAM;
-typedef unsigned int UINT;
-
-/// custom classes
-class COLORREF : public GdkRGBA{
- public:
- COLORREF()
- {
- this->red = 0.0;
- this->green = 0.0;
- this->blue = 0.0;
- this->alpha = 1.0;
- }
- COLORREF(int r, int g, int b)
- {
- this->red = r/255.0;
- this->green = g/255.0;
- this->blue = b/255.0;
- this->alpha = 1.0;
- }
-};
-
-#endif
diff --git a/ldmicro/includes/linuxUI/linuxUI.h b/ldmicro/includes/linuxUI/linuxUI.h
deleted file mode 100644
index 01b7af2..0000000
--- a/ldmicro/includes/linuxUI/linuxUI.h
+++ /dev/null
@@ -1,19 +0,0 @@
-#ifndef __LINUX_UI__
-#define __LINUX_UI__
-
-/// includes
-#include <gtk/gtk.h>
-#include <linux/limits.h>
-#include <stdio.h>
-#include <inttypes.h>
-#include "linuxUI/linuxLD.h"
-
-/// version control
-#define LDMicro_VERSION_MAJOR 1
-#define LDMicro_VERSION_MINOR 0
-
-/// functions
-BOOL isFocus(HWND);
-COLORREF RGB(int, int, int);
-
-#endif \ No newline at end of file