Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLeo Ufimtsev2016-08-26 20:59:45 +0000
committerAlexander Kurtakov2016-09-08 07:19:58 +0000
commit0302f7be79e97cd7830c11c0d6e8ababa18167b6 (patch)
treef9e35e911524b326fa6d5cbd6e0138fea86abf6e /bundles/org.eclipse.swt/Eclipse SWT PI/win32/library/com_stats.c
parent064b7951f64dfa7c0006d42ed2edc3782eb005dd (diff)
downloadeclipse.platform.swt-0302f7be79e97cd7830c11c0d6e8ababa18167b6.tar.gz
eclipse.platform.swt-0302f7be79e97cd7830c11c0d6e8ababa18167b6.tar.xz
eclipse.platform.swt-0302f7be79e97cd7830c11c0d6e8ababa18167b6.zip
Bug 500363: Native auto generated files should mention that they are
auto generated When doing work with native files, it's not clear as to which files are auto generated and which files are written manually. Especially when you are just starting to work with native C code. I added a method to JNIGenerator.java that inserts a note to every generated file about the file being auto-generated. [Update Patchset 3] - The updated patchset updates contains auto-generated files for all platforms. - Fixed typo and added name of generator class. Change-Id: I7fdac972eb2cb829316d0e970601ed4c87e6008b Task-Url: https://bugs.eclipse.org/bugs/show_bug.cgi?id=500363 Signed-off-by: Leo Ufimtsev <lufimtse@redhat.com>
Diffstat (limited to 'bundles/org.eclipse.swt/Eclipse SWT PI/win32/library/com_stats.c')
-rw-r--r--bundles/org.eclipse.swt/Eclipse SWT PI/win32/library/com_stats.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/bundles/org.eclipse.swt/Eclipse SWT PI/win32/library/com_stats.c b/bundles/org.eclipse.swt/Eclipse SWT PI/win32/library/com_stats.c
index c24ea8bf1d..951e0cbae1 100644
--- a/bundles/org.eclipse.swt/Eclipse SWT PI/win32/library/com_stats.c
+++ b/bundles/org.eclipse.swt/Eclipse SWT PI/win32/library/com_stats.c
@@ -1,5 +1,5 @@
/*******************************************************************************
- * Copyright (c) 2000, 2012 IBM Corporation and others.
+ * Copyright (c) 2000, 2016 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
@@ -9,6 +9,9 @@
* IBM Corporation - initial API and implementation
*******************************************************************************/
+/* Note: This file was auto-generated by org.eclipse.swt.tools.internal.JNIGenerator */
+/* DO NOT EDIT - your changes will be lost. */
+
#include "swt.h"
#include "com_stats.h"

Back to the top