~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to client/get_password.h

  • Committer: Monty Taylor
  • Date: 2010-06-02 22:35:45 UTC
  • mto: This revision was merged to the branch mainline in revision 1586.
  • Revision ID: mordred@inaugust.com-20100602223545-q8ekf9b40a85nwuf
Rearragned unittests into a single exe because of how we need to link it
(thanks lifeless)
Link with server symbols without needing to build a library.
Added an additional atomics test which tests whatever version of the atomics
lib the running platform would actually use.

Show diffs side-by-side

added added

removed removed

Lines of Context:
20
20
#ifndef CLIENT_GET_PASSWORD_H
21
21
#define CLIENT_GET_PASSWORD_H
22
22
 
23
 
#include <string>
24
 
 
25
 
char *client_get_tty_password(const char *opt_message);
26
 
 
27
 
std::pair<std::string, std::string> parse_password_arg(std::string s);
28
 
 
29
 
extern bool tty_password;
30
 
extern const std::string PASSWORD_SENTINEL;
 
23
#ifdef __cplusplus
 
24
extern "C" {
 
25
#endif
 
26
 
 
27
  char *client_get_tty_password(const char *opt_message);
 
28
 
 
29
#ifdef __cplusplus
 
30
}
 
31
#endif
31
32
 
32
33
#endif /* CLIENT_GET_PASSWORD_H */