Fix coding style according to tizen rule
[platform/core/security/drm-service-core-tizen.git] / tadcore / include / DrmFileApi.h
index 1cf570c..1c73320 100644 (file)
  * See the License for the specific language governing permissions and
  * limitations under the License.
  */
-
 #ifndef __DRM_FILE_API_H__
 #define __DRM_FILE_API_H__
 
-
 #include "DrmFileMgr.h"
 #include "TADC_ErrorCode.h"
 
 /*
 enum
 {
-       DRM_SEEK_SET = 0,
-       DRM_SEET_CUR,
-       DRM_SEEK_END
+    DRM_SEEK_SET = 0,
+    DRM_SEET_CUR,
+    DRM_SEEK_END
 } DRM_SEEK_TYPE
 */
 
 //typedef int DrmHandler;
 
-int DrmTdcFileOpen(const char* filePath, int* handle);
+int DrmTdcFileOpen(const char *filePath, int *handle);
 
-int DrmTdcFileClose(inthandle);
+int DrmTdcFileClose(int *handle);
 
-int DrmTdcFileRead(int* handle, void* pBuf, long long bufLen, long long* pReadLen);
+int DrmTdcFileRead(int *handle, void *pBuf, long long bufLen,
+                                  long long *pReadLen);
 
 //int DrmTdcFileSeek(int* handle, DRM_SEEK_TYPE type, long long offset);
 
-int DrmTdcFileSeek(inthandle, long long offset, int origin);
+int DrmTdcFileSeek(int *handle, long long offset, int origin);
 
-int DrmTdcFileTell(inthandle, long long *position);
+int DrmTdcFileTell(int *handle, long long *position);
 
-#endif
+#endif //__DRM_FILE_API_H_