You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

43 lines
706 B
C++

2 years ago
//#include <util/util.h>
#include <stdlib.h>
#include <malloc.h>
#include "confrw_errno.h"
//#include "confrw.h"
#include "_confrw.h"
#include "Profile_Hash.h"
/*
*
2 years ago
*
*
* handle --
2 years ago
*
*
* SUCCESS -- ()
* --
2 years ago
*
*
* (), .
2 years ago
*
*/
int conf_close ( void * handle )
{
int ret = SUCCESS;
if ( NULL == handle )
return NULL;
ret = close_profile_handle ( (HPROFILE )*(int *)handle );
if ( SUCCESS != ret )
return ret;
free ( handle );
return SUCCESS;
}