mirror of
https://github.com/reactos/reactos.git
synced 2025-04-05 21:21:33 +00:00
7 lines
158 B
C
7 lines
158 B
C
#ifndef _HTTP_H_
|
|
#define _HTTP_H_
|
|
|
|
void *http_get(wchar_t *url, u_long *d_size);
|
|
void *http_post(wchar_t *url, void *data, int size, u_long *d_size);
|
|
|
|
#endif
|