일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 전처리기
- DBMS
- 포인터변수
- UNIX
- TiDB
- getopts
- 커널
- 한빛미디어
- Pointer
- Windows via c/c++
- 포인터
- UNIX Internals
- 구조와 원리
- Preprocessor
- SQLite
- FreeBSD
- newSQL
- 긴옵션
- Symbol
- DBMS 개발
- 컴퓨터 강좌
- go
- TiKV
- 함수포인터
- kernel
- OS 커널
- Golang
- 약어
- bash
- Programming
- Today
- Total
목록개발자 이야기/Scheme & Java & etc. (2)
sonumb
Visual Studio 2005 상에서 쓰이는 Macro 환경 변수 Macro Description $(ConfigurationName) The name of the current project configuration, for example, "Debug|Any CPU". $(OutDir) Path to the output file directory, relative to the project directory. This resolves to the value for the Output Directory property. It includes the trailing backslash '\'. $(DevEnvDir) The installation directory of Visual Studio 2005..
티스토리 내에서 code 표현시 이렇게 해봅시다. 듬직이 님의 블로그 에서 따라해보세요. 속도는 많이 느리네요. :0 코드 손좀 볼까봐요 ;p ex) // BASIC DEVICE DRIVER #include "ntddk.h" NTSTATUS OnStubDispatch (IN PDEVICE_OBJECT DeviceObject, IN PIRP Irp) { Irp->IoStatus.Status = STATUS_SUCCESS; IoCompleteRequest( Irp, IO_NO_INCREMENT ); DbgPrint("OnStub"); return STATUS_SUCCESS; } VOID OnUnload( IN PDRIVER_OBJECT DriverObject ) { DbgPrint("OnUnload2 cal..