Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/windirstat/premake-4.x-stable.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/premake.h')
-rw-r--r--src/premake.h43
1 files changed, 0 insertions, 43 deletions
diff --git a/src/premake.h b/src/premake.h
deleted file mode 100644
index c5adb88..0000000
--- a/src/premake.h
+++ /dev/null
@@ -1,43 +0,0 @@
-/**
- * \file premake.h
- * \brief Global program definitions.
- * \author Copyright (c) 2002-2008 Jason Perkins and the Premake project
- */
-
-
-/**
- * The default filename for Premake scripts.
- */
-#define DEFAULT_SCRIPT_NAME "premake4.lua"
-
-
-/**
- * The success return code; the symbol avoids confusion about zero == false.
- */
-#define OKAY (0)
-
-
-/**
- * Macro to declare new "classes" - just opaque struct pointers. The macro
- * ensures that they all get defined consistently.
- */
-#define DECLARE_CLASS(n) typedef struct n##_impl* n;
-
-
-/**
- * Macro to define new "classes" - just structs with a special name.
- */
-#define DEFINE_CLASS(n) struct n##_impl
-
-
-/**
- * Macro to allocate memory for a "class" - just a struct with a special name.
- */
-#define ALLOC_CLASS(n) (n)malloc(sizeof(struct n##_impl))
-
-
-/**
- * Mark a variable as unused, so the compiler won't complain about it. I suspect
- * there is a better way to do this.
- */
-#define UNUSED(var) var = 0