Skip to content

Commit

Permalink
...
Browse files Browse the repository at this point in the history
  • Loading branch information
springkim committed Nov 15, 2018
1 parent 743407e commit 039303a
Showing 107 changed files with 106 additions and 47 deletions.
Binary file modified .vs/NSpring/v14/.suo
Binary file not shown.
8 changes: 4 additions & 4 deletions NSpring/NSpring.vcxproj
Original file line number Diff line number Diff line change
@@ -90,7 +90,7 @@
<PreprocessorDefinitions>WIN32;_DEBUG;_WINDOWS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
</ClCompile>
<Link>
<SubSystem>Windows</SubSystem>
<SubSystem>Console</SubSystem>
<GenerateDebugInformation>true</GenerateDebugInformation>
</Link>
</ItemDefinitionGroup>
@@ -103,7 +103,7 @@
<PreprocessorDefinitions>_DEBUG;_WINDOWS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
</ClCompile>
<Link>
<SubSystem>Windows</SubSystem>
<SubSystem>Console</SubSystem>
<GenerateDebugInformation>true</GenerateDebugInformation>
</Link>
</ItemDefinitionGroup>
@@ -118,7 +118,7 @@
<PreprocessorDefinitions>WIN32;NDEBUG;_WINDOWS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
</ClCompile>
<Link>
<SubSystem>Windows</SubSystem>
<SubSystem>Console</SubSystem>
<EnableCOMDATFolding>true</EnableCOMDATFolding>
<OptimizeReferences>true</OptimizeReferences>
<GenerateDebugInformation>true</GenerateDebugInformation>
@@ -135,7 +135,7 @@
<PreprocessorDefinitions>NDEBUG;_WINDOWS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
</ClCompile>
<Link>
<SubSystem>Windows</SubSystem>
<SubSystem>Console</SubSystem>
<EnableCOMDATFolding>true</EnableCOMDATFolding>
<OptimizeReferences>true</OptimizeReferences>
<GenerateDebugInformation>true</GenerateDebugInformation>
7 changes: 7 additions & 0 deletions NSpring/Release/NSpring.log
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
 코드를 생성하고 있습니다.
3 of 4 functions (75.0%) were compiled, the rest were copied from previous compilation.
0 functions were new in current compilation
0 functions had inline decision re-evaluated but remain unchanged
코드를 생성했습니다.
NSpring.vcxproj -> C:\Users\spring\Documents\Git\NSpring\Release\NSpring.exe
NSpring.vcxproj -> C:\Users\spring\Documents\Git\NSpring\Release\NSpring.pdb (Full PDB)
Binary file added NSpring/Release/NSpring.res
Binary file not shown.
Binary file added NSpring/Release/NSpring.tlog/CL.command.1.tlog
Binary file not shown.
Binary file added NSpring/Release/NSpring.tlog/CL.read.1.tlog
Binary file not shown.
Binary file added NSpring/Release/NSpring.tlog/CL.write.1.tlog
Binary file not shown.
2 changes: 2 additions & 0 deletions NSpring/Release/NSpring.tlog/NSpring.lastbuildstate
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
#TargetFrameworkVersion=v4.0:PlatformToolSet=v140:EnableManagedIncrementalBuild=false:VCToolArchitecture=Native32Bit:WindowsTargetPlatformVersion=8.1
Release|Win32|C:\Users\spring\Documents\Git\NSpring\|
Binary file added NSpring/Release/NSpring.tlog/link.command.1.tlog
Binary file not shown.
Binary file added NSpring/Release/NSpring.tlog/link.read.1.tlog
Binary file not shown.
Binary file added NSpring/Release/NSpring.tlog/link.write.1.tlog
Binary file not shown.
Binary file added NSpring/Release/NSpring.tlog/rc.command.1.tlog
Binary file not shown.
Binary file added NSpring/Release/NSpring.tlog/rc.read.1.tlog
Binary file not shown.
Binary file added NSpring/Release/NSpring.tlog/rc.write.1.tlog
Binary file not shown.
Binary file added NSpring/Release/main.obj
Binary file not shown.
Binary file added NSpring/Release/vc140.pdb
Binary file not shown.
38 changes: 33 additions & 5 deletions NSpring/main.c
Original file line number Diff line number Diff line change
@@ -38,10 +38,11 @@ void InitNotifyIconData() {
g_notifyIconData.hIcon = LoadIcon(GetModuleHandle(NULL), MAKEINTRESOURCE(IDI_ICON1));
strcpy_s(g_notifyIconData.szTip, 128, "NSpring ~_~");
}
typedef void(*HOOKFUNC)();
typedef void(*HookStopFunc)();
typedef HHOOK(*HookStartFunc)();
HMODULE hDll = NULL;
HOOKFUNC HookStart = NULL;
HOOKFUNC HookStop = NULL;
HookStartFunc HookStart = NULL;
HookStopFunc HookStop = NULL;
LRESULT CALLBACK WndProc(HWND, UINT, WPARAM, LPARAM);
int WINAPI WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR args, int iCmdShow) {
g_inittime = clock();
@@ -65,8 +66,8 @@ int WINAPI WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR args, int
InitNotifyIconData();
Minimize();
hDll = LoadLibraryA("NSpringHook.dll");
HookStart = (HOOKFUNC)GetProcAddress(hDll, "HookStart");
HookStop = (HOOKFUNC)GetProcAddress(hDll, "HookStop");
HookStart = (HookStartFunc)GetProcAddress(hDll, "HookStart");
HookStop = (HookStopFunc)GetProcAddress(hDll, "HookStop");
HookStart();
MSG msg;
while (GetMessage(&msg, NULL, 0, 0)) {
@@ -129,4 +130,31 @@ LRESULT CALLBACK WndProc(HWND hwnd, UINT message, WPARAM wParam, LPARAM lParam)
break;
}
return DefWindowProc(hwnd, message, wParam, lParam);
}
typedef struct NSPElem {
HWND hwnd;
HHOOK hook;
}NSPElem;

int main() {
hDll = LoadLibraryA("NSpringHook.dll");
HookStart = (HookStartFunc)GetProcAddress(hDll, "HookStart");
HookStop = (HookStopFunc)GetProcAddress(hDll, "HookStop");

HWND hwnd = NULL;
while ((hwnd = FindWindowExA(NULL, hwnd, "Notepad", NULL)) != NULL) {
printf("%x\n", hwnd);
}
return 0;

if (hwnd != NULL) {
HHOOK hook=HookStart(hwnd);
printf("press 'q' to quit!\n");
while (getch() != 'q');

HookStop(hook);
FreeLibrary(hDll);
DeleteFileA("C:\\Users\\spring\\Desktop\\hook.txt");
}
return 0;
}
7 changes: 5 additions & 2 deletions NSpring/x64/Debug/NSpring.log
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
 main.c
NSpring.vcxproj -> C:\Users\VIRNECT\Documents\git\NSpring\x64\Debug\NSpring.exe
NSpring.vcxproj -> C:\Users\VIRNECT\Documents\git\NSpring\x64\Debug\NSpring.pdb (Full PDB)
c:\users\spring\documents\git\nspring\nspring\main.c(153): warning C4013: 'getch'이(가) 정의되지 않았습니다. extern은 int형을 반환하는 것으로 간주합니다.
c:\users\spring\documents\git\nspring\nspring\main.c(146): warning C4477: 'printf' : 서식 문자열 '%x'에 'unsigned int' 형식의 인수가 필요하지만 variadic 인수 1의 형식이 'HWND'입니다.
c:\users\spring\documents\git\nspring\nspring\main.c(146): warning C4313: 'printf': 서식 문자열의 '%x'이(가) 인수 1('HWND' 형식)과(와) 충돌합니다.
NSpring.vcxproj -> C:\Users\spring\Documents\Git\NSpring\x64\Debug\NSpring.exe
NSpring.vcxproj -> C:\Users\spring\Documents\Git\NSpring\x64\Debug\NSpring.pdb (Full PDB)
Binary file modified NSpring/x64/Debug/NSpring.tlog/CL.command.1.tlog
Binary file not shown.
Binary file modified NSpring/x64/Debug/NSpring.tlog/CL.read.1.tlog
Binary file not shown.
Binary file modified NSpring/x64/Debug/NSpring.tlog/CL.write.1.tlog
Binary file not shown.
2 changes: 1 addition & 1 deletion NSpring/x64/Debug/NSpring.tlog/NSpring.lastbuildstate
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
#TargetFrameworkVersion=v4.0:PlatformToolSet=v140:EnableManagedIncrementalBuild=false:VCToolArchitecture=Native32Bit:WindowsTargetPlatformVersion=8.1
Debug|x64|C:\Users\VIRNECT\Documents\git\NSpring\|
Debug|x64|C:\Users\spring\Documents\Git\NSpring\|
Binary file modified NSpring/x64/Debug/NSpring.tlog/link.command.1.tlog
Binary file not shown.
Binary file modified NSpring/x64/Debug/NSpring.tlog/link.read.1.tlog
Binary file not shown.
Binary file modified NSpring/x64/Debug/NSpring.tlog/link.write.1.tlog
Binary file not shown.
Binary file modified NSpring/x64/Debug/NSpring.tlog/rc.command.1.tlog
Binary file not shown.
Binary file modified NSpring/x64/Debug/NSpring.tlog/rc.read.1.tlog
Binary file not shown.
Binary file modified NSpring/x64/Debug/NSpring.tlog/rc.write.1.tlog
Binary file not shown.
Binary file modified NSpring/x64/Debug/main.obj
Binary file not shown.
Binary file modified NSpring/x64/Debug/vc140.idb
Binary file not shown.
Binary file modified NSpring/x64/Debug/vc140.pdb
Binary file not shown.
7 changes: 4 additions & 3 deletions NSpring/x64/Release/NSpring.log
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
 main.c
main.c(142): warning C4013: 'getch'이(가) 정의되지 않았습니다. extern은 int형을 반환하는 것으로 간주합니다.
코드를 생성하고 있습니다.
4 of 4 functions (100.0%) were compiled, the rest were copied from previous compilation.
1 of 4 functions (25.0%) were compiled, the rest were copied from previous compilation.
0 functions were new in current compilation
0 functions had inline decision re-evaluated but remain unchanged
코드를 생성했습니다.
NSpring.vcxproj -> C:\Users\VIRNECT\Documents\git\NSpring\x64\Release\NSpring.exe
NSpring.vcxproj -> C:\Users\VIRNECT\Documents\git\NSpring\x64\Release\NSpring.pdb (Full PDB)
NSpring.vcxproj -> C:\Users\spring\Documents\Git\NSpring\x64\Release\NSpring.exe
NSpring.vcxproj -> C:\Users\spring\Documents\Git\NSpring\x64\Release\NSpring.pdb (Full PDB)
Binary file modified NSpring/x64/Release/NSpring.tlog/CL.command.1.tlog
Binary file not shown.
Binary file modified NSpring/x64/Release/NSpring.tlog/CL.read.1.tlog
Binary file not shown.
Binary file modified NSpring/x64/Release/NSpring.tlog/CL.write.1.tlog
Binary file not shown.
2 changes: 1 addition & 1 deletion NSpring/x64/Release/NSpring.tlog/NSpring.lastbuildstate
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
#TargetFrameworkVersion=v4.0:PlatformToolSet=v140:EnableManagedIncrementalBuild=false:VCToolArchitecture=Native32Bit:WindowsTargetPlatformVersion=8.1
Release|x64|C:\Users\VIRNECT\Documents\git\NSpring\|
Release|x64|C:\Users\spring\Documents\Git\NSpring\|
Binary file modified NSpring/x64/Release/NSpring.tlog/link.command.1.tlog
Binary file not shown.
Binary file modified NSpring/x64/Release/NSpring.tlog/link.read.1.tlog
Binary file not shown.
Binary file modified NSpring/x64/Release/NSpring.tlog/link.write.1.tlog
Binary file not shown.
Binary file modified NSpring/x64/Release/NSpring.tlog/rc.command.1.tlog
Binary file not shown.
Binary file modified NSpring/x64/Release/NSpring.tlog/rc.read.1.tlog
Binary file not shown.
Binary file modified NSpring/x64/Release/NSpring.tlog/rc.write.1.tlog
Binary file not shown.
Binary file modified NSpring/x64/Release/main.obj
Binary file not shown.
Binary file modified NSpring/x64/Release/vc140.pdb
Binary file not shown.
9 changes: 9 additions & 0 deletions NSpringHook/Release/NSpringHook.log
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
 dllMain.c
dllMain.c(60): warning C4996: 'fopen': This function or variable may be unsafe. Consider using fopen_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
C:\Program Files (x86)\Windows Kits\10\Include\10.0.10240.0\ucrt\stdio.h(205): note: 'fopen' 선언을 참조하십시오.
C:\Users\spring\Documents\Git\NSpring\Release\NSpringHook.lib 라이브러리 및 C:\Users\spring\Documents\Git\NSpring\Release\NSpringHook.exp 개체를 생성하고 있습니다.
코드를 생성하고 있습니다.
All 11 functions were compiled because no usable IPDB/IOBJ from previous compilation was found.
코드를 생성했습니다.
NSpringHook.vcxproj -> C:\Users\spring\Documents\Git\NSpring\Release\NSpringHook.dll
NSpringHook.vcxproj -> C:\Users\spring\Documents\Git\NSpring\Release\NSpringHook.pdb (Full PDB)
Binary file not shown.
Binary file not shown.
Binary file added NSpringHook/Release/NSpringHook.tlog/CL.write.1.tlog
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
#TargetFrameworkVersion=v4.0:PlatformToolSet=v140:EnableManagedIncrementalBuild=false:VCToolArchitecture=Native32Bit:WindowsTargetPlatformVersion=8.1
Release|Win32|C:\Users\spring\Documents\Git\NSpring\|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added NSpringHook/Release/dllMain.obj
Binary file not shown.
Binary file added NSpringHook/Release/vc140.pdb
Binary file not shown.
49 changes: 28 additions & 21 deletions NSpringHook/dllMain.c
Original file line number Diff line number Diff line change
@@ -11,10 +11,11 @@
#include<Shlwapi.h>
#include<direct.h>
#include<stdbool.h>
#pragma comment(lib, "Shlwapi.lib")

HINSTANCE g_hInstance = NULL;
HHOOK g_hHook = NULL;
HWND g_hwnd = NULL;

BOOL WINAPI DllMain(HINSTANCE hinstDLL, DWORD dwReason, LPVOID lpvReserved) {
switch (dwReason) {
case DLL_PROCESS_ATTACH:
@@ -56,23 +57,29 @@ typedef struct {
int top;
int top2;
}CircularQueue;

void LOG(char* msg) {
FILE* fp = fopen("C:\\Users\\spring\\Desktop\\hook.txt", "a+");
fprintf(fp, msg);
fprintf(fp, "\n");
fclose(fp);
}
bool isNotepadApp() {
char szPath[MAX_PATH] = { 0, };
char *p = NULL;
GetModuleFileNameA(NULL, szPath, MAX_PATH);
LOG(szPath);
p = strrchr(szPath, '\\');
return !_stricmp(p + 1, "notepad.exe");
}
void LOG(char* msg) {
FILE* fp = fopen("C:\\Users\\VIRNECT\\Desktop\\hook.txt", "a+");
fputs(msg,fp);
fclose(fp);
}
//À©µµ¿ì ½ÃÀ۽à Ű ¸ÔÅë

LRESULT CALLBACK KeyboardCapture(int nCode, WPARAM wParam, LPARAM lParam) {
if (nCode != HC_ACTION)return CallNextHookEx(g_hHook, nCode, wParam, lParam);
//if (g_hHook != GetCurrentProcessId())return CallNextHookEx(g_hHook, nCode, wParam, lParam);
LRESULT ret = 0;
#define KEYPRESSED(lparam) (!(lParam & 0x80000000))
#define KEYRELEASED(lparam) ((lParam & 0x80000000))
if (nCode >= 0 && isNotepadApp()) {
if (nCode >= 0 && isNotepadApp()) {
HWND hwnd = GetHWND();
HWND hwnd_edit = FindWindowExA(hwnd, 0, "Edit", NULL);
DWORD dummy;
@@ -89,7 +96,6 @@ LRESULT CALLBACK KeyboardCapture(int nCode, WPARAM wParam, LPARAM lParam) {
queue.loc = 0;
queue.top = 0;
g_temp_text = g_preallocated_temp_text;
LOG("init");
}
if ((GetKeyState(VK_CONTROL) & 0x80) && (GetKeyState(VK_SHIFT) & 0x80) && ((GetAsyncKeyState('z') & 0x8000) || (GetAsyncKeyState('Z') & 0x8000))) {
NotepadElement* pnotepad = &queue.notepad[(queue.top+1)%CAPACITY];
@@ -107,7 +113,7 @@ LRESULT CALLBACK KeyboardCapture(int nCode, WPARAM wParam, LPARAM lParam) {
SendMessageA(hwnd_edit, WM_SETREDRAW, (WPARAM)TRUE, (LPARAM)0);
queue.top = (queue.top + 1) % CAPACITY;
}
return 1;
ret = 1;
}
else if ((GetKeyState(VK_CONTROL) & 0x80) && ((GetAsyncKeyState('z') & 0x8000) || (GetAsyncKeyState('Z') & 0x8000))) {
NotepadElement* pnotepad = &queue.notepad[(queue.top+CAPACITY-1)%CAPACITY];
@@ -125,13 +131,13 @@ LRESULT CALLBACK KeyboardCapture(int nCode, WPARAM wParam, LPARAM lParam) {
SendMessageA(hwnd_edit, WM_SETREDRAW, (WPARAM)TRUE, (LPARAM)0);
queue.top = (queue.top + CAPACITY - 1) % CAPACITY;
}
return 1;
ret = 1;
} else if (KEYRELEASED(lParam) && !(GetKeyState(VK_CONTROL) & 0x80)) {
SendMessageA(hwnd_edit, WM_GETTEXT, (WPARAM)0xFFFF, (LPARAM)g_temp_text);
if (strcmp(g_temp_text, queue.notepad[(queue.top + CAPACITY - 1) % CAPACITY].text) != 0) {
LOG(queue.notepad[(queue.top + CAPACITY - 1) % CAPACITY].text);
if (strcmp(g_temp_text, queue.notepad[queue.top].text) != 0) {
/*LOG(queue.notepad[queue.top].text);
LOG(g_temp_text);
LOG("==========");
LOG("==========");*/
queue.top = (queue.top + 1) % CAPACITY;
queue.loc = (queue.loc + (queue.top == queue.loc)) % CAPACITY; ;
NotepadElement* pnotepad = &queue.notepad[queue.top];
@@ -143,15 +149,16 @@ LRESULT CALLBACK KeyboardCapture(int nCode, WPARAM wParam, LPARAM lParam) {
}
}
}
return CallNextHookEx(g_hHook, nCode, wParam, lParam);
return ret == 0 ? CallNextHookEx(g_hHook, nCode, wParam, lParam) : ret;
}

__declspec(dllexport) void HookStart() {
g_hHook = SetWindowsHookEx(WH_KEYBOARD, KeyboardCapture, g_hInstance, 0);
__declspec(dllexport) HHOOK HookStart(HWND hwnd) {
g_hHook = SetWindowsHookExA(WH_KEYBOARD, KeyboardCapture, g_hInstance, GetWindowThreadProcessId(hwnd,NULL));
return g_hHook;
}
__declspec(dllexport) void HookStop() {
if (g_hHook) {
UnhookWindowsHookEx(g_hHook);
g_hHook = NULL;
__declspec(dllexport) void HookStop(HHOOK hook) {
if (hook) {
UnhookWindowsHookEx(hook);
hook = NULL;
}
}
6 changes: 3 additions & 3 deletions NSpringHook/x64/Debug/NSpringHook.log
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
 dllMain.c
c:\users\virnect\documents\git\nspring\nspringhook\dllmain.c(68): warning C4996: 'fopen': This function or variable may be unsafe. Consider using fopen_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
c:\users\spring\documents\git\nspring\nspringhook\dllmain.c(61): warning C4996: 'fopen': This function or variable may be unsafe. Consider using fopen_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
c:\program files (x86)\windows kits\10\include\10.0.10240.0\ucrt\stdio.h(205): note: 'fopen' 선언을 참조하십시오.
NSpringHook.vcxproj -> C:\Users\VIRNECT\Documents\git\NSpring\x64\Debug\NSpringHook.dll
NSpringHook.vcxproj -> C:\Users\VIRNECT\Documents\git\NSpring\x64\Debug\NSpringHook.pdb (Full PDB)
NSpringHook.vcxproj -> C:\Users\spring\Documents\Git\NSpring\x64\Debug\NSpringHook.dll
NSpringHook.vcxproj -> C:\Users\spring\Documents\Git\NSpring\x64\Debug\NSpringHook.pdb (Full PDB)
Binary file modified NSpringHook/x64/Debug/NSpringHook.tlog/CL.command.1.tlog
Binary file not shown.
Binary file modified NSpringHook/x64/Debug/NSpringHook.tlog/CL.read.1.tlog
Binary file not shown.
Binary file modified NSpringHook/x64/Debug/NSpringHook.tlog/CL.write.1.tlog
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
#TargetFrameworkVersion=v4.0:PlatformToolSet=v140:EnableManagedIncrementalBuild=false:VCToolArchitecture=Native32Bit:WindowsTargetPlatformVersion=8.1
Debug|x64|C:\Users\VIRNECT\Documents\git\NSpring\|
Debug|x64|C:\Users\spring\Documents\Git\NSpring\|
Binary file modified NSpringHook/x64/Debug/NSpringHook.tlog/NSpringHook.write.1u.tlog
Binary file not shown.
Binary file modified NSpringHook/x64/Debug/NSpringHook.tlog/link.command.1.tlog
Binary file not shown.
Binary file modified NSpringHook/x64/Debug/NSpringHook.tlog/link.read.1.tlog
Binary file not shown.
Binary file modified NSpringHook/x64/Debug/NSpringHook.tlog/link.write.1.tlog
Binary file not shown.
Binary file modified NSpringHook/x64/Debug/dllMain.obj
Binary file not shown.
Binary file modified NSpringHook/x64/Debug/vc140.idb
Binary file not shown.
Binary file modified NSpringHook/x64/Debug/vc140.pdb
Binary file not shown.
10 changes: 5 additions & 5 deletions NSpringHook/x64/Release/NSpringHook.log
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
 dllMain.c
dllMain.c(68): warning C4996: 'fopen': This function or variable may be unsafe. Consider using fopen_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
dllMain.c(61): warning C4996: 'fopen': This function or variable may be unsafe. Consider using fopen_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
C:\Program Files (x86)\Windows Kits\10\Include\10.0.10240.0\ucrt\stdio.h(205): note: 'fopen' 선언을 참조하십시오.
C:\Users\VIRNECT\Documents\git\NSpring\x64\Release\NSpringHook.lib 라이브러리 및 C:\Users\VIRNECT\Documents\git\NSpring\x64\Release\NSpringHook.exp 개체를 생성하고 있습니다.
C:\Users\spring\Documents\Git\NSpring\x64\Release\NSpringHook.lib 라이브러리 및 C:\Users\spring\Documents\Git\NSpring\x64\Release\NSpringHook.exp 개체를 생성하고 있습니다.
코드를 생성하고 있습니다.
2 of 7 functions (28.6%) were compiled, the rest were copied from previous compilation.
1 of 11 functions ( 9.1%) were compiled, the rest were copied from previous compilation.
0 functions were new in current compilation
0 functions had inline decision re-evaluated but remain unchanged
코드를 생성했습니다.
NSpringHook.vcxproj -> C:\Users\VIRNECT\Documents\git\NSpring\x64\Release\NSpringHook.dll
NSpringHook.vcxproj -> C:\Users\VIRNECT\Documents\git\NSpring\x64\Release\NSpringHook.pdb (Full PDB)
NSpringHook.vcxproj -> C:\Users\spring\Documents\Git\NSpring\x64\Release\NSpringHook.dll
NSpringHook.vcxproj -> C:\Users\spring\Documents\Git\NSpring\x64\Release\NSpringHook.pdb (Full PDB)
Binary file modified NSpringHook/x64/Release/NSpringHook.tlog/CL.command.1.tlog
Binary file not shown.
Binary file modified NSpringHook/x64/Release/NSpringHook.tlog/CL.read.1.tlog
Binary file not shown.
Binary file modified NSpringHook/x64/Release/NSpringHook.tlog/CL.write.1.tlog
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
#TargetFrameworkVersion=v4.0:PlatformToolSet=v140:EnableManagedIncrementalBuild=false:VCToolArchitecture=Native32Bit:WindowsTargetPlatformVersion=8.1
Release|x64|C:\Users\VIRNECT\Documents\git\NSpring\|
Release|x64|C:\Users\spring\Documents\Git\NSpring\|
Binary file not shown.
Binary file modified NSpringHook/x64/Release/NSpringHook.tlog/link.command.1.tlog
Binary file not shown.
Binary file modified NSpringHook/x64/Release/NSpringHook.tlog/link.read.1.tlog
Binary file not shown.
Binary file modified NSpringHook/x64/Release/NSpringHook.tlog/link.write.1.tlog
Binary file not shown.
Binary file modified NSpringHook/x64/Release/dllMain.obj
Binary file not shown.
Binary file modified NSpringHook/x64/Release/vc140.pdb
Binary file not shown.
Binary file added Release/NSpring.exe
Binary file not shown.
Binary file added Release/NSpring.iobj
Binary file not shown.
Binary file added Release/NSpring.ipdb
Binary file not shown.
Binary file added Release/NSpring.pdb
Binary file not shown.
Binary file added Release/NSpringHook.dll
Binary file not shown.
Binary file added Release/NSpringHook.exp
Binary file not shown.
Binary file added Release/NSpringHook.iobj
Binary file not shown.
Binary file added Release/NSpringHook.ipdb
Binary file not shown.
Binary file added Release/NSpringHook.lib
Binary file not shown.
Binary file added Release/NSpringHook.pdb
Binary file not shown.
Binary file modified x64/Debug/NSpring.exe
Binary file not shown.
Binary file modified x64/Debug/NSpring.ilk
Binary file not shown.
Binary file modified x64/Debug/NSpring.pdb
Binary file not shown.
Binary file modified x64/Debug/NSpringHook.dll
Binary file not shown.
Binary file modified x64/Debug/NSpringHook.exp
Binary file not shown.
Binary file modified x64/Debug/NSpringHook.ilk
Binary file not shown.
Binary file modified x64/Debug/NSpringHook.lib
Binary file not shown.
Binary file modified x64/Debug/NSpringHook.pdb
Binary file not shown.
Binary file modified x64/Release/NSpring.exe
Binary file not shown.
Binary file modified x64/Release/NSpring.iobj
Binary file not shown.
Binary file modified x64/Release/NSpring.ipdb
Binary file not shown.
Binary file modified x64/Release/NSpring.pdb
Binary file not shown.
Binary file modified x64/Release/NSpringHook.dll
Binary file not shown.
Binary file modified x64/Release/NSpringHook.exp
Binary file not shown.
Binary file modified x64/Release/NSpringHook.iobj
Binary file not shown.
Binary file modified x64/Release/NSpringHook.ipdb
Binary file not shown.
Binary file modified x64/Release/NSpringHook.lib
Binary file not shown.
Binary file modified x64/Release/NSpringHook.pdb
Binary file not shown.

0 comments on commit 039303a

Please sign in to comment.