MySQL 8.0.37
Source Code Documentation
user_registration.h
Go to the documentation of this file.
1
2/*
3Copyright (c) 2021, 2024, Oracle and/or its affiliates.
4
5This program is free software; you can redistribute it and/or modify
6it under the terms of the GNU General Public License, version 2.0,
7as published by the Free Software Foundation.
8
9This program is designed to work with certain software (including
10but not limited to OpenSSL) that is licensed under separate terms,
11as designated in a particular file or component or in included license
12documentation. The authors of MySQL hereby grant you an additional
13permission to link the program and your derivative works with the
14separately licensed software that they have either included with
15the program or referenced in the documentation.
16
17This program is distributed in the hope that it will be useful,
18but WITHOUT ANY WARRANTY; without even the implied warranty of
19MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20GNU General Public License, version 2.0, for more details.
21
22You should have received a copy of the GNU General Public License
23along with this program; if not, write to the Free Software
24Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
25*/
26
27#ifndef USER_REGISTRATION_H_
28#define USER_REGISTRATION_H_
29
30#include <mysql.h>
31
32bool user_device_registration(MYSQL *mysql, char *register_option,
33 char *errmsg);
34
35#endif // USER_REGISTRATION_H_
This file defines the client API to MySQL and also the ABI of the dynamically linked libmysqlclient.
Definition: instrumented_condition_variable.h:32
Definition: mysql.h:299
bool user_device_registration(MYSQL *mysql, char *register_option, char *errmsg)
This helper method is used to perform device registration against a user account.
Definition: user_registration.cc:87