Changeset 271e24a in mainline for uspace/app/hdisk/func_gpt.c


Ignore:
Timestamp:
2013-03-24T00:12:25Z (11 years ago)
Author:
Dominik Taborsky (AT DOT) <brembyseznamcz>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
30440ed
Parents:
ec50ac4a
Message:

hdisk - testing libmbr

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/app/hdisk/func_gpt.c

    rec50ac4a r271e24a  
    3333 */
    3434
     35#include <stdio.h>
     36#include <errno.h>
     37#include <sys/types.h>
     38
    3539#include "func_gpt.h"
     40
     41int add_gpt_part(tinput_t * in, union table_data * data)
     42{
     43        int rc = EOK;
     44       
     45        return rc;
     46}
     47
     48int delete_gpt_part(tinput_t * in, union table_data * data)
     49{
     50        int rc = EOK;
     51       
     52        return rc;
     53}
     54
     55int print_gpt_parts(union table_data * data)
     56{
     57        int rc = EOK;
     58       
     59        return rc;
     60}
     61
     62int write_gpt_parts(service_id_t dev_handle, union table_data * data)
     63{
     64        int rc = EOK;
     65       
     66        return rc;
     67}
     68
Note: See TracChangeset for help on using the changeset viewer.