forked from teamnwah/openmw-tes3coop
69e8f9c9db
- renamed imp_client/ to clients/ and ditto for servers/ - renamed imp/ to servers/ - renamed stream/input.h to stream/stream.h - renamed Stream::InputStream to Stream::Stream - updated various tests and makefiles - NOT TESTED YET
21 lines
325 B
C++
21 lines
325 B
C++
#include "../servers/physfs_vfs.h"
|
|
|
|
#include "server_common.cpp"
|
|
|
|
#include <physfs.h>
|
|
|
|
int main()
|
|
{
|
|
// Set up the library and paths
|
|
PHYSFS_init("blah");
|
|
PHYSFS_addToSearchPath("test.zip", 1);
|
|
PHYSFS_addToSearchPath("./", 1);
|
|
|
|
// Create our interface
|
|
PhysVFS vfs;
|
|
|
|
// Run the test
|
|
testAll(vfs);
|
|
|
|
return 0;
|
|
}
|