nlib
sqlite3.h
[詳解]
1
2
#pragma once
3
#ifndef INCLUDE_NN_NLIB_OSS_SQLITE3_H_
4
#define INCLUDE_NN_NLIB_OSS_SQLITE3_H_
5
6
#include "sqlite3.h"
// NOLINT
7
8
#define SQLITE_NLIB_DATA_DIRECTORY_TYPE (1)
9
#define SQLITE_NLIB_TEMP_DIRECTORY_TYPE (2)
10
11
#ifdef __cplusplus
12
extern
"C"
13
#endif
14
int
sqlite3_nlib_set_directory
(
int
type,
const
char
* dir);
15
16
#endif // INCLUDE_NN_NLIB_OSS_SQLITE3_H_
sqlite3_nlib_set_directory
int sqlite3_nlib_set_directory(int type, const char *dir)
SQLite3のためのディレクトリを設定します。
© 2012-2016 Nintendo Co., Ltd. All rights reserved.