~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to win32/conn_uds.c

  • Committer: Monty Taylor
  • Date: 2010-08-12 20:27:32 UTC
  • mto: (1720.1.5 build)
  • mto: This revision was merged to the branch mainline in revision 1722.
  • Revision ID: mordred@inaugust.com-20100812202732-9kzchbkvkyki4n3u
Merged libdrizzle directly into tree.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * Drizzle Client & Protocol Library
 
3
 *
 
4
 * Copyright (C) 2008 Eric Day (eday@oddments.org)
 
5
 * All rights reserved.
 
6
 *
 
7
 * Use and distribution licensed under the BSD license.  See
 
8
 * the COPYING file in this directory for full text.
 
9
 */
 
10
 
 
11
/**
 
12
 * @file
 
13
 * @brief UDS Connection stubs for Windows
 
14
 */
 
15
 
 
16
#include "libdrizzle/common.h"
 
17
#include "libdrizzle/conn_private.h"
 
18
 
 
19
/*
 
20
 * Common definitions
 
21
 */
 
22
 
 
23
const char *drizzle_con_uds(drizzle_con_st *con)
 
24
{
 
25
  (void)con;
 
26
  return (const char *)NULL;
 
27
}
 
28
 
 
29
void drizzle_con_set_uds(drizzle_con_st *con, const char *uds)
 
30
{
 
31
  (void)con;
 
32
  (void)uds;
 
33
}
 
34
 
 
35
/*
 
36
 * Private definitions
 
37
 */
 
38
 
 
39
bool drizzle_con_uses_uds(drizzle_con_st *con)
 
40
{
 
41
  (void)con;
 
42
  return false;
 
43
}
 
44
 
 
45
void drizzle_con_clone_uds(drizzle_con_st *con, drizzle_con_st *from)
 
46
{
 
47
  (void)con;
 
48
  (void)from;
 
49
}