Skip to content

Commit

Permalink
q
Browse files Browse the repository at this point in the history
  • Loading branch information
brcolow committed Aug 16, 2018
1 parent 8c487ca commit eb0534d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -342,7 +342,7 @@ static final native int GetGlyphPlacements(long ptr,

//IWICImagingFactory
static final native long CreateBitmap(long ptr, int uiWidth, int uiHeight, int pixelFormat, int options);
static final native long UninitializeCOM(long ptr);
static final native void UninitializeCOM(long ptr);

//IWICBitmap
static final native long Lock(long ptr, int x, int y, int width, int height, int flags);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2357,7 +2357,7 @@ JNIEXPORT jlong JNICALL OS_NATIVE(CreateBitmap)
return SUCCEEDED(hr) ? (jlong)result : NULL;
}

JNIEXPORT jlong JNICALL OS_NATIVE(UninitializeCOM)
JNIEXPORT void JNICALL OS_NATIVE(UninitializeCOM)
(JNIEnv *env, jclass that, jlong arg0)
{
CoUninitialize();
Expand Down

0 comments on commit eb0534d

Please sign in to comment.