Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #ifndef BIGLIB_H
- #define BIGLIB_H
- #define DWORD unsigned long
- extern DWORD _BigCreate(DWORD initValue);
- #endif
- #include <stdio.h>
- #include "biglib.h"
- int main(int argc, char *argv[])
- {
- unsigned long big = _BigCreate(0);
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement