enumwebclient.h 1.5 KB

12345678910111213141516171819202122232425
  1. #include <windows.h>
  2. //main
  3. WINBASEAPI BOOL WINAPI KERNEL32$WaitNamedPipeA(LPCSTR lpNamedPipeName, DWORD nTimeOut);
  4. WINBASEAPI void* WINAPI MSVCRT$malloc(SIZE_T);
  5. WINBASEAPI SIZE_T WINAPI MSVCRT$strlen(const char* str);
  6. WINBASEAPI void* WINAPI MSVCRT$strcpy(const char* dest, const char* source);
  7. WINBASEAPI void* WINAPI MSVCRT$strcat(const char* dest, const char* source);
  8. //DECLSPEC_IMPORT void __cdecl MSVCRT$free(void* _Block);
  9. DECLSPEC_IMPORT FILE* __cdecl MSVCRT$fopen(const char* _Filename, const char* _Mode);
  10. DECLSPEC_IMPORT int __cdecl MSVCRT$fclose(FILE* _File);
  11. DECLSPEC_IMPORT char* __cdecl MSVCRT$fgets(char* _Buffer, int _MaxCount, FILE* _File);
  12. WINBASEAPI int __cdecl MSVCRT$printf(const char * _Format,...);
  13. DECLSPEC_IMPORT char* __cdecl MSVCRT$strtok(char* _String, const char* _Delimiters);
  14. WINBASEAPI int __cdecl MSVCRT$strcmp(const char *str1, const char *str2);
  15. //bofstart + internal_printf + printoutput
  16. WINBASEAPI void *__cdecl MSVCRT$calloc(size_t number, size_t size);
  17. WINBASEAPI int WINAPI MSVCRT$vsnprintf(char* buffer, size_t count, const char* format, va_list arg);
  18. WINBASEAPI void __cdecl MSVCRT$memset(void *dest, int c, size_t count);
  19. WINBASEAPI void* WINAPI MSVCRT$memcpy(void* dest, const void* src, size_t count);
  20. WINBASEAPI HANDLE WINAPI KERNEL32$GetProcessHeap();
  21. WINBASEAPI LPVOID WINAPI KERNEL32$HeapAlloc(HANDLE hHeap, DWORD dwFlags, SIZE_T dwBytes);
  22. WINBASEAPI void __cdecl MSVCRT$free(void *memblock);
  23. WINBASEAPI BOOL WINAPI KERNEL32$HeapFree(HANDLE, DWORD, PVOID);