diff options
author | Jean-Michel Trivi <> | 2009-04-18 21:39:35 -0700 |
---|---|---|
committer | The Android Open Source Project <initial-contribution@android.com> | 2009-04-18 21:39:35 -0700 |
commit | 4d271a29277fc289ef5b0c42e7894c28179479bb (patch) | |
tree | 75be020498dc2b4f6be351a9d7247edacea005a1 /arm-wt-22k/jetcreator_lib_src/darwin-x86/EASLib.h | |
parent | 7351908e6944610c1098891809b715fb7ef03b2d (diff) | |
download | external_sonivox-4d271a29277fc289ef5b0c42e7894c28179479bb.zip external_sonivox-4d271a29277fc289ef5b0c42e7894c28179479bb.tar.gz external_sonivox-4d271a29277fc289ef5b0c42e7894c28179479bb.tar.bz2 |
AI 146585: am: CL 146484 am: CL 146399 Add sources of the OSX native lib for JetCreator.
Original author: jmtrivi
Merged from: //branches/cupcake/...
Original author: android-build
Automated import of CL 146585
Diffstat (limited to 'arm-wt-22k/jetcreator_lib_src/darwin-x86/EASLib.h')
-rwxr-xr-x | arm-wt-22k/jetcreator_lib_src/darwin-x86/EASLib.h | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/arm-wt-22k/jetcreator_lib_src/darwin-x86/EASLib.h b/arm-wt-22k/jetcreator_lib_src/darwin-x86/EASLib.h new file mode 100755 index 0000000..0c0a89d --- /dev/null +++ b/arm-wt-22k/jetcreator_lib_src/darwin-x86/EASLib.h @@ -0,0 +1,31 @@ +/*
+ * EASLib.h
+ * EASLIb
+ *
+ * Copyright (C) 2008 The Android Open Source Project
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ *
+ */
+
+#include "eas_types.h"
+
+extern EAS_RESULT EAS_LibInit (EAS_DATA_HANDLE *pHandle)
+{
+ return EAS_Init(pEASData);
+}
+
+EAS_EXPORT EAS_LibShutdown (EAS_DATA_HANDLE handle)
+{
+ EAS_Shutdown(handle);
+}
|