Top

mIRC PID Dll source


C++ Code
+ 0 likes
Please Register to submit score.
Bookmark and Share
Average Score  0.0 (of 0 scores)
Date Added  Sep 15, 2009
Last Updated  Sep 15, 2009
Tags  dll 

Introduction

This source will make a dll when compiled that will work with mIRC by using $dll(dll,GetStuPID,$null) identifier in mIRC

Grab the Code

#include <windows.h>
#include <stdlib.h>
int __declspec(dllexport) __stdcall GetStuPID(HWND mWnd, HWND aWnd, char *data, char *parms, BOOL show, BOOL nopause)
{
DWORD pid = GetCurrentProcessId();
sprintf(data, "%u", pid);
return 3;
}

Comments

  (0)  RSS

Commenting Options

Register or Login to Hawkee.com or use your Facebook or Twitter account by clicking the corresponding button below.

  
Bottom