Browse Source

VSCode defaults to tabs

JoshEngebretson 10 years ago
parent
commit
917dff0e50
1 changed files with 28 additions and 28 deletions
  1. 28 28
      NativePluginExample/Native/MyNativePlugin.cpp

+ 28 - 28
NativePluginExample/Native/MyNativePlugin.cpp

@@ -1,37 +1,37 @@
 #include "AtomicPlugin.h"
 #ifdef _MSC_VER
-    #include <windows.h>
-    #define EXPORT_API __declspec(dllexport)
+#include <windows.h>
+#define EXPORT_API __declspec(dllexport)
 #else
-    #define EXPORT_API
+#define EXPORT_API
 #endif
 
-extern "C" 
-{	
-	static int js_getAnswer(duk_context* ctx)
-	{
-		duk_push_number(ctx, 42);
-		return 1;
-		
-	}
+extern "C"
+{
+    static int js_getAnswer(duk_context* ctx)
+    {
+        duk_push_number(ctx, 42);
+        return 1;
 
-	// plugin init is a duk cfunction itself, so we can pcall the import	
-	int EXPORT_API atomic_plugin_init(duk_context* ctx)
-	{
-		// exports object at 0
+    }
+
+    // plugin init is a duk cfunction itself, so we can pcall the import	
+    int EXPORT_API atomic_plugin_init(duk_context* ctx)
+    {
+        // exports object at 0
         if (!duk_is_object(ctx, 0))
-		{
-			duk_push_boolean(ctx, 0);		
-			return 1;			
-		}
+        {
+            duk_push_boolean(ctx, 0);
+            return 1;
+        }
+
+        // export out native functions
+        duk_push_c_function(ctx, js_getAnswer, 0);
+        duk_put_prop_string(ctx, -2, "getAnswer");
+
+        // and return success
+        duk_push_boolean(ctx, 1);
+        return 1;
+    }
 
-		// export out native functions
-		duk_push_c_function(ctx, js_getAnswer, 0);
-		duk_put_prop_string(ctx, -2, "getAnswer");
-		
-		// and return success
-		duk_push_boolean(ctx, 1);		
-		return 1;
-	}
-	
 }