Leaked source code of windows server 2003
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

97 lines
5.8 KiB

/**INC+**********************************************************************/
/* Header: CLicense.h */
/* */
/* Purpose: Client License Manager functions */
/* */
/* Copyright(C) Microsoft Corporation 1997 */
/* */
/****************************************************************************/
/** Changes:
* $Log$
**/
/**INC-**********************************************************************/
#ifndef _CLICENSE_H
#define _CLICENSE_H
/****************************************************************************/
/* Define the calling convention */
/****************************************************************************/
#define CALL_TYPE _stdcall
/**PROC+*********************************************************************/
/* Name: CLicenseInit */
/* */
/* Purpose: Initialize ClientLicense Manager */
/* */
/* Returns: Handle to be passed to subsequent License Manager functions */
/* */
/* Params: None */
/* */
/* Operation: LicenseInit is called during Client initialization. Its */
/* purpose is to allow one-time initialization. It returns a */
/* handle which is subsequently passed to all License Manager */
/* functions. A typical use for this handle is as a pointer to */
/* memory containing per-instance data. */
/* */
/**PROC-*********************************************************************/
int CALL_TYPE CLicenseInit(
HANDLE FAR * phContext
);
/**PROC+*********************************************************************/
/* Name: CLicenseData */
/* */
/* Purpose: Handle license data received from the Server */
/* */
/* Returns: LICENSE_OK - License negotiation is complete */
/* LICENSE_CONTINUE - License negotiation will continue */
/* */
/* Params: pHandle - handle returned by LicenseInit */
/* pData - data received from Server */
/* dataLen - length of data received */
/* */
/* Operation: This function is passed all license packets received from the */
/* Server. It should parse the packet and respond (by calling */
/* suitable SL functions - see aslapi.h) as required. */
/* */
/* If license negotiation is complete, this function must return */
/* LICENSE_OK */
/* If license negotiation is not yet complete, return */
/* LICENSE_CONTINUE */
/* */
/* Incoming packets from the Client will continue to be */
/* interpreted as license packets until this function returns */
/* LICENSE_OK. */
/* */
/**PROC-*********************************************************************/
int CALL_TYPE CLicenseData(
HANDLE hContext,
LPVOID pData,
DWORD dataLen
);
#define LICENSE_OK 0
#define LICENSE_CONTINUE 2
#define LICENSE_ERROR 4
/**PROC+*********************************************************************/
/* Name: CLicenseTerm */
/* */
/* Purpose: Terminate Client License Manager */
/* */
/* Returns: None */
/* */
/* Params: pHandle - handle returned from LicenseInit */
/* */
/* Operation: This function is provided to do one-time termination of the */
/* License Manager. For example, if pHandle points to per- */
/* instance memory, this would be a good place to free it. */
/* */
/**PROC-*********************************************************************/
int CALL_TYPE CLicenseTerm(
HANDLE hContext
);
#endif /* _CLICENSE_H */