X-Git-Url: https://harrygodden.com/git/?a=blobdiff_plain;f=workshop.h;h=be9e3a5207728c7a7490d8fda4a0e96aa00e2e9c;hb=HEAD;hp=36a6aa5ad2f0b7e2ce18ab4006104242ea72e8fe;hpb=6afe1eb8c0283fdf65aaf117db8c33689c21552d;p=carveJwlIkooP6JGAAIwe30JlM.git diff --git a/workshop.h b/workshop.h deleted file mode 100644 index 36a6aa5..0000000 --- a/workshop.h +++ /dev/null @@ -1,39 +0,0 @@ -#ifndef WORKSHOP_H -#define WORKSHOP_H - -#include "workshop_types.h" - -#define VG_GAME -#include "vg/vg.h" -#include "vg/vg_steam_remote_storage.h" -#include "skaterift.h" -#include "pointcloud.h" - -struct async_workshop_filepath_info{ - PublishedFileId_t id; - char *buf; - u32 len; -}; - -struct async_workshop_installed_files_info{ - PublishedFileId_t *buffer; - u32 *len; /* inout */ -}; - -struct async_workshop_metadata_info{ - struct workshop_file_info *info; - const char *path; -}; - -VG_STATIC void async_workshop_get_filepath( void *data, u32 len ); -VG_STATIC void async_workshop_get_installed_files( void *data, u32 len ); -VG_STATIC void workshop_load_metadata( const char *path, - struct workshop_file_info *info ); - -/* generic reciever */ -VG_STATIC void workshop_async_any_complete( void *data, u32 size ) -{ - skaterift_end_op(); -} - -#endif /* WORKSHOP_H */