added get_get_profile_list_request
This commit is contained in:
parent
1fb2c938e2
commit
18c7ea256f
3 changed files with 64 additions and 0 deletions
|
@ -35,6 +35,7 @@ OBJS = \
|
|||
src/sml_get_proc_parameter_response.o \
|
||||
src/sml_get_profile_pack_request.o \
|
||||
src/sml_get_profile_pack_response.o \
|
||||
src/sml_get_profile_list_request.o
|
||||
|
||||
ifeq ($(UNAME), Linux)
|
||||
libsml: $(DYN_LIB) $(ST_LIB) $(OBJ_LIB)
|
||||
|
|
41
sml/include/sml/sml_get_profile_list_request.h
Normal file
41
sml/include/sml/sml_get_profile_list_request.h
Normal file
|
@ -0,0 +1,41 @@
|
|||
// Copyright 2011 Juri Glass, Mathias Runge, Nadim El Sayed
|
||||
// DAI-Labor, TU-Berlin
|
||||
//
|
||||
// This file is part of libSML.
|
||||
//
|
||||
// libSML is free software: you can redistribute it and/or modify
|
||||
// it under the terms of the GNU General Public License as published by
|
||||
// the Free Software Foundation, either version 3 of the License, or
|
||||
// (at your option) any later version.
|
||||
//
|
||||
// libSML is distributed in the hope that it will be useful,
|
||||
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
// GNU General Public License for more details.
|
||||
//
|
||||
// You should have received a copy of the GNU General Public License
|
||||
// along with libSML. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
#ifndef _SML_GET_PROFILE_LIST_REQUEST_H
|
||||
#define _SML_GET_PROFILE_LIST_REQUEST_H
|
||||
|
||||
#include "sml_get_profile_pack_request.h"
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
// Apparently SML_GetProfilePack.Req is the same as SML_GetProfileList.Req
|
||||
typedef sml_get_profile_pack_request sml_get_profile_list_request;
|
||||
|
||||
#define sml_get_profile_list_request_init() sml_get_profile_pack_request_init()
|
||||
#define sml_get_profile_list_request_parse(buf) sml_get_profile_pack_request_parse(buf)
|
||||
#define sml_get_profile_list_request_write(msg, buf) sml_get_profile_pack_request_write(msg, buf)
|
||||
#define sml_get_profile_list_request_free(msg) sml_get_profile_pack_request_free(msg)
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif
|
||||
|
22
sml/src/sml_get_profile_list_request.c
Normal file
22
sml/src/sml_get_profile_list_request.c
Normal file
|
@ -0,0 +1,22 @@
|
|||
// Copyright 2011 Juri Glass, Mathias Runge, Nadim El Sayed
|
||||
// DAI-Labor, TU-Berlin
|
||||
//
|
||||
// This file is part of libSML.
|
||||
//
|
||||
// libSML is free software: you can redistribute it and/or modify
|
||||
// it under the terms of the GNU General Public License as published by
|
||||
// the Free Software Foundation, either version 3 of the License, or
|
||||
// (at your option) any later version.
|
||||
//
|
||||
// libSML is distributed in the hope that it will be useful,
|
||||
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
// GNU General Public License for more details.
|
||||
//
|
||||
// You should have received a copy of the GNU General Public License
|
||||
// along with libSML. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
#include <sml/sml_get_profile_list_request.h>
|
||||
|
||||
// this file is just there for symmetry
|
||||
|
Loading…
Add table
Reference in a new issue