Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- static cell AMX_NATIVE_CALL nativeMKDIR(AMX * amx, cell * params)
- {
- char *sDir = NULL;
- amx_StrParam(amx, params[1], sDir);
- if(!sDir) return 2;
- return mkdir(sDir);
- }
- AMX_NATIVE_INFO HelloWorldNatives[ ] =
- {
- { "mkdir", nativeMKDIR},
- { 0, 0 }
- };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement