[ create a new paste ] login | about

Link: http://codepad.org/XsM9VPRk    [ raw code | fork ]

C, pasted on Jul 2:
1
2
3
4
5
6
7
8
9
10
11
/* main.c */
#include <windows.h>
#include "sub.h"

 __declspec(dllimport) int n2dll;
int main(int argc, char **argv) {
  n2dll = argc + 2;
  dllmain();
  return 0;
}
/* end */


Create a new paste based on this one


Comments: