Created
December 28, 2018 16:45
-
-
Save volgar1x/916de309c29dd0d02423214d14e189a5 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
struct thread_params { | |
shared_ptr<Store> store; | |
}; | |
struct thread_params * p = new struct thread_params; | |
p->store = store; | |
CreateThread(&initThread, p) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment