1
0
mirror of https://github.com/samba-team/samba.git synced 2025-10-21 03:33:16 +03:00

r24712: No longer expose the 'BOOL' data type in any interfaces.

(This used to be commit 1ce32673d9)
This commit is contained in:
Jelmer Vernooij
2007-08-27 18:10:19 +00:00
committed by Gerald (Jerry) Carter
parent 4fb038b0b8
commit 61ffa08f4c
53 changed files with 172 additions and 169 deletions

View File

@@ -208,7 +208,7 @@ struct dcesrv_connection {
/* the transport level session key */
DATA_BLOB transport_session_key;
BOOL processing;
bool processing;
/* this is the default state_flags for dcesrv_call_state structs */
uint32_t state_flags;
@@ -235,13 +235,13 @@ struct dcesrv_endpoint_server {
* ask for a dcesrv_interface implementation
* - iface must be reference to an already existing struct !
*/
BOOL (*interface_by_uuid)(struct dcesrv_interface *iface, const struct GUID *, uint32_t);
bool (*interface_by_uuid)(struct dcesrv_interface *iface, const struct GUID *, uint32_t);
/* this function can be used by other endpoint servers to
* ask for a dcesrv_interface implementation
* - iface must be reference to an already existeng struct !
*/
BOOL (*interface_by_name)(struct dcesrv_interface *iface, const char *);
bool (*interface_by_name)(struct dcesrv_interface *iface, const char *);
};