일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- Symbol
- DBMS 개발
- newSQL
- 약어
- getopts
- 구조와 원리
- 커널
- go
- SQLite
- Golang
- bash
- 포인터변수
- TiDB
- kernel
- TiKV
- 한빛미디어
- UNIX
- 포인터
- Windows via c/c++
- 전처리기
- DBMS
- Pointer
- 긴옵션
- OS 커널
- FreeBSD
- 컴퓨터 강좌
- Programming
- UNIX Internals
- Preprocessor
- 함수포인터
- 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..