Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | ||||
4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 | 12 | 13 | 14 | 15 | 16 | 17 |
18 | 19 | 20 | 21 | 22 | 23 | 24 |
25 | 26 | 27 | 28 | 29 | 30 | 31 |
Tags
- 멀티바이트 문자 집합 사용
- wxWidget
- Mqtt
- __snprintf
- 의존주입
- SQLite3
- _sprintf
- git 최초 설정
- c++ set struct
- 설치 테스트
- Console
- Plugins
- winsock.h Broadcast
- esp-wroom-32d
- 정적 라이브러리에서 MFC 사용
- 사전설치
- ExtendWith
- OpenCPN
- MFC
- __vsnprintf
- Flutter
- .gitattributes
- sts4
- OpenXLSX 한글
- OpenCPN설치
- LINK2001
- c2678
- 확인할 수 없는 외부 기호
- c++ Broadcast
- git 대용량 파일
Archives
- Today
- Total
목록LNK1120 (1)
세상을 이롭게

static 을 사용할 때 나는 문제로 전역에서 정의하지 않았기에 나는 애러이다. 전역에서 정의해야하는 이유는 static 이기 때문에,,, static 멤버 변수는 모든 객체에 공유되어야 하므로 프로그램 전체 영역에서 메모리가 유지된다. struct st_DB_OpenDlg { wxString path; long date1; long time1; long date2; long time2; }; class FilePanel : public wxPanel { public: static struct st_DB_OpenDlg* m_st_DB_OpenDlg; }; #include "FilePanel.h" ////////////////////////////////////////////////////////////..
C,C++
2022. 2. 10. 13:47