/*
Winbind client API
Copyright (C) Gerald (Jerry) Carter 2007
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 3 of the License, or (at your option) any later version.
This library 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
Library General Public License for more details.
You should have received a copy of the GNU Lesser General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
/* Required Headers */
#include "libwbclient.h"
/* Convert a binary GUID to a character string */
char **guid_string)
{
char *result;
return WBC_ERR_NO_MEMORY;
}
"%08x-%04x-%04x-%02x%02x-%02x%02x%02x%02x%02x%02x",
*guid_string = result;
return WBC_ERR_SUCCESS;
}
/* @brief Convert a character string to a binary GUID */
{
int i;
if (!guid) {
}
if (!str) {
}
}
for (i=0;i<6;i++) {
}
done:
return wbc_status;
}