|
Revision 44:c913756e6950, 0.9 kB
(checked in by Frank Benoit <benoit@tionex.de>, 10 months ago)
|
Combo
|
| Line | |
|---|
| 1 |
/******************************************************************************* |
|---|
| 2 |
* Copyright (c) 2000, 2007 IBM Corporation and others. |
|---|
| 3 |
* All rights reserved. This program and the accompanying materials |
|---|
| 4 |
* are made available under the terms of the Eclipse Public License v1.0 |
|---|
| 5 |
* which accompanies this distribution, and is available at |
|---|
| 6 |
* http://www.eclipse.org/legal/epl-v10.html |
|---|
| 7 |
* |
|---|
| 8 |
* Contributors: |
|---|
| 9 |
* IBM Corporation - initial API and implementation |
|---|
| 10 |
*******************************************************************************/ |
|---|
| 11 |
module dwt.internal.C; |
|---|
| 12 |
|
|---|
| 13 |
import dwt.internal.Platform; |
|---|
| 14 |
|
|---|
| 15 |
static import tango.stdc.string; |
|---|
| 16 |
|
|---|
| 17 |
public class C : Platform { |
|---|
| 18 |
alias tango.stdc.string.memmove MoveMemory; |
|---|
| 19 |
//public static final native void free (int /*long*/ ptr); |
|---|
| 20 |
//public static final native int /*long*/ getenv (byte[] wcsToMbcs); |
|---|
| 21 |
//public static final native int /*long*/ malloc (int /*long*/ size); |
|---|
| 22 |
} |
|---|