이 웹사이트는 자바스크립트 활성화가 필요합니다.
홈
탐색
도움말
로그인
TheoryOfNekomata
/
midi-utils
보기
1
좋아요
0
포크
0
코드
이슈
0
풀 리퀘스트
0
릴리즈
0
위키
활동
소스 검색
Add C++ support
Add extern statement. Also fix the strlwr definition on Windows.
master
TheoryOfNekomata
1 년 전
부모
04b34ae8ff
커밋
c41eb2823f
3개의 변경된 파일
과
12개의 추가작업
그리고
4개의 파일을 삭제
분할 보기
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
CMakeLists.txt
+1
-1
midi-utils.c
+10
-2
midi-utils.h
+ 1
- 1
CMakeLists.txt
파일 보기
@@ -1,5 +1,5 @@
cmake_minimum_required(VERSION 3.24)
project(midi_
note_id_
utils C)
project(midi_utils C)
set(CMAKE_C_STANDARD 11)
+ 1
- 1
midi-utils.c
파일 보기
@@ -1,6 +1,6 @@
#include "midi-utils.h"
#if !defined _
_
WIN32
#if !defined _WIN32
void _strlwr(char* dest) {
for (unsigned int i = 0; i < strlen(dest); i += 1) {
if ('A' <= dest[i] && dest[i] <= 'Z') {
+ 10
- 2
midi-utils.h
파일 보기
@@ -11,8 +11,16 @@
#define MIDI_CC_SOSTENUTO 0x42u
#define MIDI_CC_UNACORDA 0x43u
char* MIDI_GetNoteName(unsigned char);
#if defined __cplusplus
extern "C" {
#endif
char *MIDI_GetNoteName(unsigned char);
unsigned char MIDI_GetNoteFromName(const char*);
unsigned char MIDI_GetNoteFromName(const char *);
#if defined __cplusplus
}
#endif
#endif
쓰기
미리보기
불러오는 중...
취소
저장