/**
* const char*型の文字列をchar*型に変換する関数.
* @param letters<const char*> 変換する文字列のポインタ
* @return <char*> 変換された文字列のポインタ
*/
char* convertConstCharToChar(const char* letters) {
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| namespace TweetGazer.Common | |
| { | |
| /// <summary> | |
| /// アプリケーションに1つのみ存在する静的な値の内、GitHubに載せないパラメーターを持つ静的クラス | |
| /// </summary> | |
| public static class SecretParameters | |
| { | |
| /// <summary> | |
| /// Twitter APIのConsumerKey | |
| /// </summary> |